将子域名重定向至用户个人资料

将子域名重定向至用户个人资料

我想将所有子域重定向到用户配置文件,例如:

重定向此 URL: http://alexusername.example.com

到 : http://alexusername.example.com

但显示的内容: http://example.com/user.php?q=alexusername

我的意思是,我想在不改变浏览器中的 URL 的情况下显示内容,http://example.com/user.php?q=alexusername我希望它仍然http://alexusername.example.com

我尝试过这个:

<IfModule mod_rewrite.c>
Options +FollowSymLinks
Options +Indexes
RewriteEngine On
RewriteCond %{HTTP_HOST} !www.blackhawk.site$ [NC]
RewriteCond %{HTTP_HOST} ^(www.)?([a-z0-9-]+).blackhawk.site [NC]
RewriteRule ^(.*)$ http://blackhawk.site/user.php?q=%2 [L]
</IfModule>

相关内容