我想从old_page.php
到new_page.php
执行301重定向,并保留所有查询字符串(如果存在)。
因此old_page.php
会重定向到new_page.php
old_page.php?test=1
会重定向到new_page.php?test=1
以下是我的内容,但这是404错误。
RewriteEngine on
RewriteRule ^old_page.php(.*) new_page.php$1 [R=301,L]
答案 0 :(得分:4)
这有效:
Redirect 301 /old_page.php /new_page.php