如何将mydomain.com/asin-123.php
重定向到new-domain.com/product-reviews/123/
我试过
RewriteRule ^asin-(.*).php$ http://www.amazon.de/product-reviews/$1/?tag=httpswww08e73-21 [R=301,NC,L]
但不知怎的,它不起作用...... :(
答案 0 :(得分:2)
尝试使用RedirectMatch指令:
RedirectMatch ^/asin-([^.]+)\.php$ http://newdomain.com/reviews/$1