-1

我想重定向domain.com/folder1/nisanth.php?id=1domain.com/folder2/nisanth.php?id=1. 我怎样才能写我的 htaccess 行?我尝试使用

Redirect 301 /folder1/nisanth.php?id=$1 /folder2/nisanth.php?id=$1

但没有用。

4

2 回答 2

0

这应该可以帮助你

RewriteEngine on
RewriteRule ^/folder1/nisanth.php?id=(.*)$ /folder2/nisanth.php?id=$1 [L,R=301]
于 2013-03-21T09:23:20.053 回答
0

应该

Redirect 301 /folder1/nisanth.php?id=(.*) http://www.domain.com/folder2/nisanth.php?id=$1
于 2013-03-21T08:51:10.660 回答