我在分析中找到了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]
答案 0 :(得分:0)
RewriteRule
中的条件反转。使用此规则:
RewriteCond %{QUERY_STRING} ^format=feed&type=atom$ [NC]
RewriteRule ^product-categories/?$ /product-categories/? [NC,NE,L,R=301]