我的.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。
答案 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>