HTTPS到HTTP重定向仅适用于基本URL(apache)

时间:2017-04-07 16:47:24

标签: apache http https

过去几个小时我一直在摸不着头脑。我需要将我网站上的所有内容从https重定向到http。

我在.htaccess文件中添加了以下代码。

RewriteEngine On
RewriteCond %{HTTPS} on
RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]

现在,此代码已成功从https://example.com重定向到http://example.com。但是不会将https://example/foo.html重定向到http://example/foo.html。 由于这个原因,我输掉了太多的流量。

感谢。

0 个答案:

没有答案