我有一个指向主机上文件夹的域“ http://www.example.com”,我需要使用.htaccess重定向到相应的HTTPS。
.htaccess文件是什么:
<IfModule !mod_fcgid.c>
AddHandler php-stable .php
</IfModule>
<IfModule mod_fcgid.c>
AddHandler fcgid-script .php
FcgidWrapper /etc/apache2/gs-bin/php-stable-wrapper .php
<Files *.php>
Options +ExecCGI
</Files>
</IfModule>
我添加的是这个:
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.example.com/$1 [R=301,L]
我没有成功
有什么建议吗?
答案 0 :(得分:-1)
好了,我找到了解决方案,我必须在该文件夹中使用相同的代码创建一个.htaccess。