我只需要将此 URLwww.mysite.com/index.php?url=othersite.com
重写为www.mysite.com/othersite.com
我写了这个.htaccess
RewriteEngine On
RewriteRule ^([a-zA-Z0-9_-]+)$ index.php?url=$1
RewriteRule ^([a-zA-Z0-9_-]+)/$ index.php?url=$1
还将该代码添加到.htaccess
文件中并与文件一起上传到站点根index.php
目录,但无论如何,我总是得到www.mysite.com/index.php?url=othersite.com
非常感谢指教!