我需要改变这样的事情:
www.mydomain.com/www.otherdomain.com
对此:
www.mydomain.com/index.php?co=www.otherdomain.com
使用 mod_rewrite 我想出了这个:
RewriteRule ^(.*.)+$ index.php?co=$1 [L]
然而,它只返回co
参数的“index.php”,而不是像我想要的那样返回“www.otherdomain.com”。
谢谢你的帮助!