Prestashop 友好 URL 与 mod_rewrite

Prestashop Friendly URL's with mod_rewrite

我正在尝试在 prestashop 中启用友好 URL。完全清洁 prestashop 和 apache 服务器的安装。 Apache 的 mod_rewrite 已启用;我已经尝试过清理缓存、强制编译和多次尝试在谷歌上搜索更多解决方案。

有什么建议吗?当 Friendly URL 关闭时,一切正常。

提前致谢。

好的,我已经解决了。我在 ssl 和友好 URL 之间遇到问题。我已经通过将 defauls-ssl.conf 配置为 apache2/sites-enabled

来解决

这是您网站的配置-ssl.config:

ServerAdmin admin@yourserver.com
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>