Apache重定向如果包含字符串

时间:2014-02-03 05:10:37

标签: apache .htaccess redirect

我在尝试:

RewriteRule ^\/product\/id\/7$ http://newdomain.com/whywonthisworkgrrr?id=1 [L,R=301]

它不起作用,我需要将所有/ product / id / 7的网页重定向到网址中。

1 个答案:

答案 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]