The matching domain name of Nginx pan analysis is bound to the subdirectory configuration

The directory structure of the website is: # tree /home/wwwroot/linuxeye.com /home/wwwroot/linuxeye.com ├── bbs │ └── index.html └── www   └── index.html 2 directories, 2 files /home/wwwroot/linuxeye.com is the default path to store the source code in the nginx installation directory. bbs is the source code path of the forum program; www is the source code path of the homepage program; put the corresponding program into the above path and pass; http://www.linuxeye.com visits the homepage http://bbs.linuxeye.com It is a forum, and other second-level domain names can be analogized. There are 2 methods, recommended method 1 Method 1: server { listen 80; server_name ~^(?.+).linuxeye.com$; access_log /data/wwwlogs/linuxeye.com_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; } } Method Two: server { listen 80; server_name *.linuxeye.com; access_log /home/wwwlogs/linuxeye.com_nginx.log combined; index index.html index.htm index.php; if ($host ~* ^([^\ .]+)\.([^\.]+\.[^\.]+)$) { set $subdomain $1; set $domain $2; } location / { root /home/wwwroot/linuxeye.com/$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 ~…

Contact Us

Contact us

181-3619-1160

Online consultation: QQ交谈

E-mail: [email protected]

Working hours: Monday to Friday, 9:00-17:30, holidays off

Follow wechat
Scan wechat and follow us

Scan wechat and follow us

Follow Weibo
Back to top
首页
微信
电话
搜索