通过wordpress中的htaccess将旧的https重定向到http

时间:2011-09-19 07:46:16

标签: wordpress http redirect https

我刚刚为客户重建了一个带有wordpress的旧网站。旧网站的所有页面都是https://

我想将所有这些https页面重定向到http 旧页面的格式如下:https://example.com/index.php?stm_a=23&m=279&r=98ab55fe446d960a&rid=98ab55fe446d960a我必须将它们重定向到新的永久链接结构,如: /关于/ /联系/  等

我尝试使用info here将所有流量从https重定向到http无效

我当前的htaccess文件是:

    # BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress

感谢我能得到的任何帮助。 亲切的问候, 米哈伊

1 个答案:

答案 0 :(得分:0)

RewriteEngine On之后,请尝试添加以下内容:

RewriteCond %{HTTPS} on
RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI}