友好URL不适用于HTTPS

时间:2016-04-15 15:26:35

标签: php apache .htaccess https

我的.htaccess文件如下所示:

RewriteEngine on
RewriteCond %{HTTP_HOST} ^www.example.com$
RewriteCond %{HTTP_HOST} ^example\.com$ [NC]
RewriteRule ^(.*)$ http://www.example.com/$1 [R=301,L]

Rewriterule  ^(friendly-url)  index.php?file=first&cat_id=0,01

我错过了什么吗?我不知道,为什么我不能用HTTPS打开友好的URL。

1 个答案:

答案 0 :(得分:0)

找到解决方案。我只是忘了向virtualhost文件中添加一些选项:<virtualhost *:433> file:

<Directory /var/www/html/example.com/public_html>
                Options +Indexes +FollowSymLinks -MultiViews
                AllowOverride All
                Order allow,deny
                allow from all
</Directory>