如何将 SSL 安全页面https://www.mysite.com的请求重定向 到非安全http://www.mysite.com
我试过这个,但没有奏效。
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTPS} on
RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI}
我做了一个 phpinfo() 并在配置 >> apache2handler >> 加载模块部分下查看 mod_rewrite。