On 7/1/2018 at 9:33 PM, Apury said:I've enabled friendly URL after the installation of my shop. From index.php it then changed to /en/ yielding in
Not Found
I solved the problem by adding the Allowoverride All directive to /etc/apache2/apache2.conf
<Directory /var/www/prestashop/> Options Indexes FollowSymLinks AllowOverride All </Directory>
Yes, this solved my problem as well.
Additionally, you will also have to enable mod_filter; otherwise you will get the error:
.../.htaccess: Invalid command 'AddOutputFilterByType', perhaps misspelled or defined by a module not included in the server configuration
In Ubuntu just run:
a2enmod filter
Thanks for posting this.
Best regards
Josef