如何在urt的参数中使用。(点或句点)在htaccess中创建重写规则

时间:2011-04-28 01:53:19

标签: apache .htaccess mod-rewrite url-rewriting

这是我的示例网址:

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'

怎么办呢?

感谢,

1 个答案:

答案 0 :(得分:0)

在.htaccess文件中尝试此规则:

Options +FollowSymlinks -MultiViews
RewriteEngine on

RewriteCond %{QUERY_STRING} !^site= [NC]
RewriteRule ^(folder/subfolder)/(.*)$ /$1/index.php?site=$2 [L,NC,QSA]