在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
原本准备换Linux服务器,所以数据迁移暂时需要使用静态页面临时代替一下,之前的article.asp?id=xxx都要重定向到静态文件 article/xxx.htm,nginx的rewrite比apache的强大很多,还可以用if语句,很容易理解,下面看看Nginx是如何进行Rewrite的! rewrite "^(.*)/service/(.*)/.html$" $1/service.php?sid=$2 permanent; 反过来: 带参数的动态地址重定向到静态地址 if ($query_string ~* id=(.*)) { set $id $1; rewrite "^(.*)/article.asp$" $1/article/$id.htm last; } 泛域名 假设这里网站的目录结构为 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正则表达式匹配
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 |
请发表评论