国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 網站 > Nginx > 正文

nginx將泛解析的匹配域名綁定到子目錄配置方法

2024-08-30 12:22:44
字體:
來源:轉載
供稿:網友
這篇文章主要介紹了nginx將泛解析的匹配域名綁定到子目錄配置方法,需要的朋友可以參考下

網站的目錄結構為:

 # tree /home/wwwroot/exehack.net
/home/wwwroot/exehack.net
├── bbs
│   └── index.html
└── www
    └── index.html
2 directories, 2 files

/home/wwwroot/exehack.net為nginx的安裝目錄下默認的存放源代碼的路徑。
bbs為論壇程序源代碼路徑;www為主頁程序源代碼路徑;把相應程序放入上面的路徑通過;http://www.exehack.net 訪問的就是主頁http://bbs.exehack.net 訪問的就是論壇,其它二級域名類推。
有2種方法,推薦方法一

 server {listen 80;server_name ~^(?<subdomain>.+).exehack.net$;access_log /data/wwwlogs/exehack.net_nginx.log combined;index index.html index.htm index.php;root /home/wwwroot/linuxeye/$subdomain/;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;  }}

方法二、

 server {listen 80;server_name *.exehack.net;access_log /home/wwwlogs/exehack.net_nginx.log combined;index index.html index.htm index.php;if ($host ~* ^([^/.]+)/.([^/.]+/.[^/.]+)$) {  set $subdomain $1;  set $domain $2;}location / {  root /home/wwwroot/exehack.net/$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;  }}

nginx將泛解析的匹配域名綁定到子目錄的配置方法如下

復制代碼 代碼如下:
server {
    listen        80;
    server_name   domain.com    *.domain.com;

    if ($host ~* ^([^/.]+)/.([^/.]+/.[^/.]+)$) {
        set $subdomain $1;
        set $domain $2;
    }

    location / {
        root    /home/wwwroot/$domain/$subdomain/;
        index   index.php index.html index.htm;
        #include /home/wwwroot/$domain/$subdomain/.ngx.htaccess;
    }

    error_page   500 502 503 504  /50x.html;

    location = /50x.html {
        root   html;
    }

    location ~ /.php$ {
        root           /home/wwwroot/$domain/$subdomain/;

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 沾益县| 夏邑县| 兰坪| 静乐县| 南溪县| 益阳市| 嘉义市| 明光市| 莱芜市| 利辛县| 容城县| 隆回县| 南汇区| 吐鲁番市| 高尔夫| 曲靖市| 高州市| 辽阳市| 黑河市| 苏州市| 安塞县| 潮州市| 鹤庆县| 丹东市| 彰武县| 调兵山市| 易门县| 隆林| 大田县| 三门县| 咸宁市| 原阳县| 儋州市| 临泉县| 都安| 全南县| 密山市| 托克逊县| 黄浦区| 大新县| 日土县|