我刚将博客从Blogger移到了WordPress,并且移动网址存在问题。
WordpPress具有设置网址结构的功能,因此桌面的网址没有问题,但移动版Blogger网址还有一个?m=1
。
这就是我要做的事情:
重定向http://www.example.com/2016/05/artical.html?m=1
到http://www.example.com/2016/05/artical.html
我尝试了这个,但它不起作用:
RewriteCond %{QUERY_STRING} ^(.*)(^|&)m=1(.*)$
RewriteRule ^(.*)$ /$1?%1%3 [R=301,L]
答案 0 :(得分:6)
希望这有助于RewriteEngine On
RewriteCond %{QUERY_STRING} ^m=1$
RewriteRule ^(.*)$ /$1? [R=301,L]