如何使用htaccess将链接重定向到另一个链接?

时间:2011-09-12 06:46:28

标签: php .htaccess redirect

我有一个类似的链接:

www.website.com/index.php?id=123456

我想重定向到:

www.website.com/test.php

问题是id每次都可能不同,可能是id=123456id=632456

关于如何解决这个问题的任何想法?

感谢

编辑:

如果我想将其重定向到www.website.com/test.php?id=123456或其他ID是什么?

1 个答案:

答案 0 :(得分:3)

这样的事情:

RewriteRule index\.php.* test.php

或者你可以更具体:

RewriteRule index\.php\?id=[0-9]+$ test.php

或者你甚至可以发送id:

RewriteRule index\.php\?id=([0-9]+)$ test.php?id=$1