本文主要是介绍nginx将泛解析的匹配域名绑定到子目录配置方法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
应用场景:
http://zzl.lteam.cn/ 访问/usr/local/boke/lteam.cn/zzl 目录下的 index.html
http://lj.lteam.cn/ 访问/usr/local/boke/lteam.cn/lj 目录下的 index.html
目录结构:
/usr/local/boke/
├── lteam.cn
│ └── zzl
│ ├── index.html
│ └── lj
│ ├── index.html
nginx配置:
server {listen 80;server_name *.lteam.cn;#charset koi8-r;#access_log logs/host.access.log main;if ($host ~* ^([^\.]+)\.([^\.]+\.[^\.]+)$) {set $subdomain $1;set $domain $2;}location / {# root html;# index index.html index.htm;root /usr/local/boke/$domain/$subdomain;index index.html;}}
这篇关于nginx将泛解析的匹配域名绑定到子目录配置方法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!