将子域redirect到用户configuration文件

我想要将所有子域redirect到用户configuration文件,例如:

redirect这个URL: http://alexusername.example.com : http://alexusername.example.com

要: http://alexusername.example.com : http://alexusername.example.com

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

我的意思是我想显示http://example.com/user.php?q=alexusername的内容而不改变浏览器中的URL我希望它仍然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>