我在尝试:
RewriteRule ^\/product\/id\/7$ http://newdomain.com/whywonthisworkgrrr?id=1 [L,R=301]
它不起作用,我需要将所有/ product / id / 7的网页重定向到网址中。
答案 0 :(得分:0)
need to redirect all pages that have /product/id/7 anywhere in the URL.
您可以使用此规则:
RewriteRule (^|/)product/id/7(/|$) http://newdomain.com/whywonthisworkgrrr?id=1 [L,NC,R=301]