我想将http://subdomain.domain.com重定向到http://subdomain.domain.com/user/index.php?name=subdomain这是否可以通过htaccess
答案 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