Prestashop友情网址与mod_rewrite

时间:2016-10-19 15:22:58

标签: mod-rewrite apache2 prestashop prestashop-1.6 friendly-url

我正在尝试在prestashop中启用友好的URL。清理prestashop和apache服务器的完全安装。 Apache的mod_rewrite已启用;我已经尝试过清洁caché,强制进行编译,并且有几个问题需要用Google搜索。

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

提前谢谢。

1 个答案:

答案 0 :(得分:1)

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

来解决

以下是yoursite-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>