关于触发网址
http://www.MYSITE.org/reg/u/32
我想将其转发到此链接,
http://www.MYSITE.org/register/sponsorship/?u=32
我试过了
RewriteRule /reg/u/([0-9]+)/$ register/sponsorship/?u=$1 [QSA]
RewriteRule /reg/u/([0-9]+)$ register/sponsorship/?u=$1 [QSA]
但没有工作。缺什么?有什么帮助吗?
答案 0 :(得分:1)
试试这个
RewriteRule ^(.*)$ http://www.mysite.org/register/sponsorship/?u=$1 [L]