subdomain htaccess rediect with query string

时间:2016-08-12 13:03:04

标签: regex .htaccess

1 个答案:

答案 0 :(得分:0)

是的,它可能。

将以下内容添加到您的htaccess

RewriteEngine on



RewriteCond %{HTTP_HOST} ^((?!www\.).+)\.example.com
RewriteRule !index\.php http://%{HTTP_HOST}/user/index.php?name=%1 [L,R,NE]

上述规则会将 foo.example.com 重定向到 foo.example.com/user/index.php?name=foo