我有一个类似的链接:
www.website.com/index.php?id=123456
我想重定向到:
www.website.com/test.php
问题是id
每次都可能不同,可能是id=123456
或id=632456
关于如何解决这个问题的任何想法?
感谢
编辑:
如果我想将其重定向到www.website.com/test.php?id=123456
或其他ID是什么?
答案 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