如何强制http post通配符重定向

时间:2014-03-06 10:29:21

标签: .htaccess redirect wildcard

我有很多页面我想强制成为http而不是https我目前拥有的代码是:

RewriteEngine On

RewriteCond %{HTTPS} =on

RewriteRule ^$ http://mydomain.com [R=301,L]

如何为此添加通配符重定向?也许

RewriteRule ^$ http://mydomain.com/category/* [R=301,L]

如果这有什么不同,它在WordPress网站上?

干杯

1 个答案:

答案 0 :(得分:1)

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

这会将https://hostname/*重定向到http://hostname/*