nginx将子域重写为文件作为变量

前端之家收集整理的这篇文章主要介绍了nginx将子域重写为文件作为变量前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

如何将子域作为要在重写中添加的变量?

hello.example.com应该转到example.com/user.PHP?u=hello但仍显示为hello.example.com

我目前正在做http://example.com/users/hello,但希望为用户提供Tumblr风格的域名.

rewrite ^/users/(.*)$/user.PHP?u=$1 last;

另外,如果子域名为/ settings /之后的页面为hello.example.com/settings/,我需要重写为settings.PHP

最佳答案
两件事情.首先,您需要读取主机变量以获取子域并将其设置为稍后使用的变量.我使用了变量$sub_domain,然后将变量附加到URI.

if ($host ~* (.*)\.example\.com) {
     set $sub_domain $1;
     rewrite ^/user.PHP$/user.PHP?u=$sub_domain
}

重写行需要进一步调整.我在这里举了一个例子.有关可用选项,请参阅内置的Nginx variables documentation.

原文链接:https://www.f2er.com/nginx/435133.html

猜你在找的Nginx相关文章