服务器 发布日期:2024/11/1 浏览次数:1
原本准备换Linux服务器,所以数据迁移暂时需要使用静态页面临时代替一下,之前的article.asp"htmlcode">
rewrite "^(.*)/service/(.*)/.html$" $1/service.php"htmlcode">if ($query_string ~* id=(.*)) { set $id $1; rewrite "^(.*)/article.asp$" $1/article/$id.htm last; }泛域名
假设这里网站的目录结构为
html
├── bbs
└── www
html为nginx的安装目录下默认的存放源代码的路径。
bbs为论坛程序源代码路径
www为主页程序源代码路径
把相应程序放入上面的路径通过
http://www.youdomain.com 访问的就是主页
http://bbs.yourdomain.com 访问的就是论坛
其它二级域名类推。server_name www.w3cgroup.com *.w3cgroup.com; server_name_in_redirect off; #设置默认root set $rootdir /usr/local/nginx/html/w3cgroup/; #匹配三级域名 if ($host ~* ^([^/.]+)/.([^/.]+)/.([^/.]+)/.([^/.]+)$) { set $rootdir /usr/local/nginx/html/w3cgroup/$2/$1; #三级域名中有访问指定的目录则重定向到相应的二级域名下 rewrite "^.+upload/" http://upload.w3cgroup.com/$1 permanent; rewrite "^.+ijc/" http://ijc.w3cgroup.com/$1 permanent; break; } #匹配二级域名 if ($host ~* ^([^/.]+)/.([^/.]+)/.([^/.]+)$) { set $rs1 $1; } #设置www时root if ($rs1 ~* ^www$) { set $rootdir /usr/local/nginx/html/platform_ig/; #二级域名中有访问指定的目录则重定向到相应的二级域名下,注意,这里要使用last rewrite "^.+upload/" upload/$1 last; rewrite "^.+ijc/" ijc/$1 last; break; } #设置非www二级域名时root if ($rs1 !~* ^www$) { set $rootdir /usr/local/nginx/html/w3cgroup/$rs1; #二级域名中有访问指定的目录则重定向到相应的二级域名下 rewrite "^.+upload/" http://upload.w3cgroup.com/$1 permanent; rewrite "^.+ijc/" http://ijc.w3cgroup.com/$1 permanent; break; } #应用root root $rootdir; index index.php index.html; error_page 404 http://$host/;注意:if () {} 之间需要空格,否则Nginx.conf会报unknow directive 错误!
参考:
Nginx Rewrite Flags
Nginx正则表达式匹配
Nginx文件及目录匹配
Nginx全局变量
$args $content_length $content_type $document_root $document_uri $host $http_user_agent $http_cookie $limit_rate $request_body_file $request_method $remote_addr $remote_port $remote_user $request_filename $request_uri $query_string $scheme $server_protocol $server_addr $server_name $server_port $uri