我需要将用户个人资料页面重定向到子域,以便每个用户都有自己的子域。例如:
example.com/user/username
重定向到username.example.com
,并显示example.com/user/username
的内容
我已经设置了通配符:
*.example.com
所以现在所有子域都显示example.com的内容,但是如何使它显示为使用个人资料页面而非首页?
答案 0 :(得分:0)
如果您只需要显示个人资料页面而没有其他用户内容,请尝试:
RewriteCond %{HTTP_HOST} (.+)\.example.com [NC]
RewriteRule ^ example.com/user/%1