Page 1 of 1

Index.php - routing

Posted: 19 Oct 2017, 12:29
by tkristis
Hi, we're trying to set up aimeos on a staging environment on AWS with ec2.

We're using ubuntu 16.04, with the latest aimeos version, with PHP 7.0, and laravel 5.5.

We are having issues when it comes to routing, as the address seems to require index.php before it. If we try to link on any links, we for example from list to basket we get an 404 not found due to the lack of index.php.

We tried adding index.php as the landing page with apache, however when we do this we lose the css.

Anyone got any suggestions?

Thanks,
Kristis.

Re: Index.php - routing

Posted: 19 Oct 2017, 13:15
by aimeos
Make sure you've installed and activated mod_rewrite!
In your public folder is a .htaccess file, which rewrites the URLs. If mod_rewrite isn't available, you get the problems you describe.

Re: Index.php - routing

Posted: 19 Oct 2017, 13:37
by tkristis
Thank you for help!