首页>>帮助中心>>香港云服务器Nginx泛解析匹配域名绑定到子目录配置

香港云服务器Nginx泛解析匹配域名绑定到子目录配置

2024/9/18 65次

香港云服务器Nginx泛解析匹配域名绑定到子目录配置

比如网站的目录结构为:
# tree /home/wwwroot/enuoidc.com
/home/wwwroot/enuoidc.com
├── bbs
│ └── index.html
└── www
└── index.html
2 directories, 2 files

/home/wwwroot/enuoidc.com为nginx的安装目录下默认的存放源代码的路径。
bbs为论坛程序源代码路径
www为主页程序源代码路径
把相应程序放入上面的路径通过
http://www.enuoidc.com 访问的就是主页
http://www.enuoidc.com 访问的就是论坛
其它二级域名类推。
有2种方法,推荐方法一

方法一:
方法二:

server {
listen 80;
server_name *.enuoidc.com;
access_log /home/wwwlogs/enuoidc.com_nginx.log combined;
index index.html index.htm index.php;
if ($host ~* ^([^.]+).([^.]+.[^.]+)$) {
set $subdomain $1;
set $domain $2;
}
location / {
root /home/wwwroot/$domain/$subdomain/;
index index.php index.html index.htm;
}
location ~ .php$ {
fastcgi_pass unix:/dev/shm/php-cgi.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
location ~ .*.(gif|jpg|jpeg|png|bmp|swf|flv|ico)$ {
expires 30d;
}
location ~ .*.(js|css)?$ {
expires 7d;
}
}

一诺网络香港免备案专区,提供「香港增强云服务器」和「香港特惠云服务器」两种类型的高可用弹性计算服务,搭载新一代英特尔®至强®铂金处理器,接入CN2低延时高速回国带宽线路,网络访问顺滑、流畅。机房网络架构采用了BGP协议的解决方案可提供多线路互联融合网络,使得不同网络运营商线路的用户都能通过最佳路由实现快速访问。香港云服务器低至29元/月,购买链接:https://www.enuoidc.com/vps.html?typeid=2

版权声明

    声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们996811936@qq.com进行处理。