Makros
Makros

Reputation: 352

Prestashop Friendly URL's with mod_rewrite

I'm trying to enable friendly URL in prestashop. Clean fully installation of prestashop and apache server. Apache's mod_rewrite is enabled; I've tried cleaning caché, forcing compilation and several attemts to more solutions googled.

Any suggestions? When Friendly URL's off, everything works fine.

Thank you in advance.

Upvotes: 0

Views: 2239

Answers (1)

Makros
Makros

Reputation: 352

Ok, I've solved. I had an issue between ssl and friendly URL's. I've solved by configuring defauls-ssl.conf into apache2/sites-enabled

Here is the config for your yoursite-ssl.config:

ServerAdmin [email protected]
DocumentRoot /path/to/your/folder/page/
ServerName yourweburl.com

Options All Indexes FollowSymLinks
<Directory /path/to/your/folder/page/ >
    DirectoryIndex index.php
    Options Indexes FollowSymLinks MultiViews
    AllowOverride All
    Order allow,deny
    Allow from all
</Directory>

#   SSL Config
SSLEngine on
SSLCertificateFile /etc/apache2/ssl/yourwebsslcertificate.cert
SSLCertificateKeyFile /etc/apache2/ssl/yourwebsslcertificate.key
SSLCertificateChainFile /etc/apache2/ssl/yourwebsslcertificate.cert

</VirtualHost>

Upvotes: 1

Related Questions