htaccess重定向并将网站页面显示为子域

时间:2018-09-21 08:05:24

标签: apache .htaccess

我需要将用户个人资料页面重定向到子域,以便每个用户都有自己的子域。例如:

example.com/user/username重定向到username.example.com,并显示example.com/user/username的内容

我已经设置了通配符:

*.example.com

所以现在所有子域都显示example.com的内容,但是如何使它显示为使用个人资料页面而非首页?

1 个答案:

答案 0 :(得分:0)

如果您只需要显示个人资料页面而没有其他用户内容,请尝试:

RewriteCond %{HTTP_HOST} (.+)\.example.com [NC]
RewriteRule ^ example.com/user/%1