我刚刚为客户重建了一个带有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
感谢我能得到的任何帮助。 亲切的问候, 米哈伊
答案 0 :(得分:0)
RewriteEngine On
之后,请尝试添加以下内容:
RewriteCond %{HTTPS} on
RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI}