我有网站www.mytest.com(在php中)
当我以https://mytest.com请求
时,我正在访问该网站但是,当我请求网站为:http://mytest.com时,它无效。
谁能告诉我是什么原因?
服务器上有这个.htaccess文件:
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://mytest.com/$1 [R,L]
答案 0 :(得分:0)
最后一行真的说:
RewriteRule ^(.*)$ https://mytest.com/$1 [R,L]
如果是,请在前面添加一个井号(#)进行评论。例如,将其更改为:
# RewriteRule ^(.*)$ https://mytest.com/$1 [R,L]