这是我的示例网址:
http://mydomain.com/folder/subfolder/index.php?site=www.othersite.com
我想用这种方式重写:
http://mydomain.com/folder/subfolder/www.othersite.com
我试过
RewriteEngine on
RewriteBase /folder/subfolder/
RewriteRule ^([A-Za-z0-9\\-\\.]+)$ index.php?site=$1 [L]
我打印了数组$ _GET并将'site'参数的值返回为'index.php',它没有返回'www.othersite.com'
怎么办呢?
感谢,
答案 0 :(得分:0)
在.htaccess文件中尝试此规则:
Options +FollowSymlinks -MultiViews
RewriteEngine on
RewriteCond %{QUERY_STRING} !^site= [NC]
RewriteRule ^(folder/subfolder)/(.*)$ /$1/index.php?site=$2 [L,NC,QSA]