我们更改了购物车,旧购物车会使用以下字符串调用项目:
category1 / display_product(并将productname添加到字符串中。)。html
使用htaccess,我想告诉所有字符串中category1 / display_product的产品要重写为:wwww.example.com/page1
希望这会缓解404错误。 我尝试了以下,但它不起作用 RewriteRule ^ Category1 / display_product(。+)。html $ http://www.example.com/page1 [L,R = 301]
有谁知道正确的方法?提前致谢
答案 0 :(得分:0)
好的找到了答案 - 这很有效。 RewriteCond%{QUERY_STRING} ^ $ RewriteRule ^ category1 / display_product(。*)$ http://www.website.com/newpage? [R = 301,L]