当我通过HTTP发出请求时,我没有收到该网站

时间:2011-03-02 17:49:48

标签: php .htaccess

我有网站www.mytest.com(在php中)

当我以https://mytest.com请求

时,我正在访问该网站

但是,当我请求网站为:http://mytest.com时,它无效。

谁能告诉我是什么原因?

服务器上有这个.htaccess文件:

RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$  https://mytest.com/$1 [R,L]

1 个答案:

答案 0 :(得分:0)

最后一行真的说:

RewriteRule ^(.*)$ https://mytest.com/$1 [R,L]

如果是,请在前面添加一个井号(#)进行评论。例如,将其更改为:

# RewriteRule ^(.*)$ https://mytest.com/$1 [R,L]