301重定向.HTACCESS - 删除查询字符串

时间:2014-09-25 02:22:26

标签: string .htaccess url redirect

我在分析中找到了404页面。我无法通过.htaccess找出重定向下面链接的正确语法。有人能提供解决方案吗?非常感谢你。

http://www.mywebsite.com/product-categories?format=feed&type=atom

我尝试了这个,还有很多其他人都没有成功。

RewriteCond %{QUERY_STRING} ^format=feed&type=atom$
RewriteRule ^product-categories/$ http://www.mywebsite.com/product-categories/?  [L,R=301]

1 个答案:

答案 0 :(得分:0)

RewriteRule中的条件反转。使用此规则:

RewriteCond %{QUERY_STRING} ^format=feed&type=atom$ [NC]
RewriteRule ^product-categories/?$ /product-categories/? [NC,NE,L,R=301]