0条评论
还没有人评论过~
1 ~ #表示匹配过程中区分大小写; 2 ~* #表示匹配过程中不区分大小写; 3 !~ #如果 '~' 匹配失败时,那么该条件就为true; 4 !~* #如果 '~*' 匹配失败时,那么该条件就为true。
1 if ($http_user_agent ~ MSIE) { 2 …… 3 }
1 if ( $http_user_agent ~* "(Android)|(iPhone)|(Mobile)|(WAP)|(UCWEB)" ){ 2 rewrite ^/$ http://www.cnblogs.com permanent; 3 }
1 -f #如果请求的文件存在,那么该条件为true; 2 !-f #如果该文件的目录存在,该文件不存在,那么返回true。如果该文件和目录都不存
1 if (-f $request_filename) { 2 …… 3 }
1 if (!-f $request_filename) { 2 …… 3 }
1 -d #如果请求的目录存在,则返回true。否则返回false; 2 !-d #如果请求的目录不存在,但是该请求的上级目录存在,则返回true。如果该上级目录不存在,则返回false。 3 -e和!-e #用来判断是否存在文件或目录 4 -x和!-x #用来判断文件是否可执行
1 last #表示完成rewrite,之后继续向下匹配新的location URI规则,浏览器地址栏URL地址不变。 2 break #本条规则匹配完成后,终止匹配, 不再匹配后面的规则,完成重写指令,浏览器地址栏URL地址不变。 3 redirect #返回302临时重定向,浏览器地址会显示跳转新的URL地址。 4 permanent #返回301永久重定向,浏览器地址会显示跳转新的URL地址。
1 $args #该变量中存放了请求URL中的请求指令,同$query_string; 2 $content_length #该变量中存放了HTTP请求头中的Content-length字段。; 3 $content_type #该变量中存放了HTTP请求头中的Content-type字段; 4 $document_root #该变量中存放了针对当前请求的根路径。 5 $document_uri #该变量中存放了请求的当前URI, 但是不包括请求指令; 6 $host #变量中存放了请求的URL中的主机部分字段,如果请求中没有Host行,则等于设置的服务器名; 7 $http_host #该变量与$host唯一区别带有端口号; 8 $http_user_agent #该变量中存放客户端的代理信息; 9 $http_cookie #该变量中存放客户端的cookie信息。 10 $limit_rate #对连接速率的限制; 11 $request_method #请求的方法,比如"GET"、"POST"等; 12 $remote_addr #该变量中存放客户端的地址; 13 $remote_port #该变量中存放了客户端与服务器建立连接的端口号; 14 $remote_user #该变量中存放客户端的用户名,认证用; 15 $request_filename #该变量中存放了当前请求的资源文件的路径名; 16 $request_body_file #该变量中存放了发给后端服务器的本地文件资源的名称; 17 $request_method #该变量中存放了客户端的请求方式,比如 'GET'、'POST'等。 18 $request_uri #该变量中存放了当前请求的URI,并且带请求指令,即带查询字符串,不包含主机名,如:”/foo/bar.php?arg=baz”; 19 $query_string #与$args相同; 20 $scheme #该变量中存放了客户端请求使用的协议,比如http或者是https; 21 $server_protocol #该变量中存放了客户端请求协议的版本请求的协议版本,"HTTP/1.0"或"HTTP/1.1"; 22 $server_addr #服务器地址,如果没有用listen指明服务器地址,使用这个变量将发起一次系统调用以取得地址(造成资源浪费); 23 $server_name #请求到达的服务器名; 24 $server_port #请求到达的服务器端口号; 25 $uri #请求的URI,可能和最初的值有不同,比如经过重定向之类的。
1 $host:demo.linuxds.com 2 $server_port:88 3 $request_uri:http://demo.linuxds.com:88/test1/test2/test.php 4 $document_uri:/test1/test2/test.php 5 $document_root:/var/www/html 6 $request_filename:/var/www/html/test1/test2/test.php
1 server{ 2 listen 80; 3 server_name www.linuxds.com; 4 return 403; 5 rewrite /(.*) /abc/$1; #该行配置位于return后,则不会被执行。 6 }
1 server { 2 ..... 3 4 if ($request_uri ~ "\.htpasswd|\.bak") 5 { 6 return 404; 7 rewrite /(.*) /aaa.txt; #该行配置位于return后,则不会被执行。 8 } 9 #如下为其他server,不受上一个server中的return影响,即若下面还有其他配置,会被执行。 10 ..... 11 }
1 server{ 2 listen 80; 3 server_name www.linuxds.com; 4 return 200 "hello"; 5 }
1 location ^~ /aming { 2 default_type application/json ; 3 return 200 '{"name":"xhy","id":"100"}'; 4 } #返回的字符串也支持json数据。
1 location /test { 2 return 200 "$host $request_uri"; 3 } #返回的字符串也支持变量
1 server{ 2 listen 80; 3 server_name www.linuxds.com; 4 return http://www.linuxds.com/123.html; 5 rewrite /(.*) /abc/$1; #该行配置位于return后,则不会被执行。 6 }
1 rewrite ^/(.*) http://www.baidu.com/$1 permanent;
1 [root@nginx01 ~]# vi /etc/nginx/conf.d/rewrite01.conf 2 server { 3 listen 80; 4 server_name cnblogs.linuxds.com; 5 access_log /var/log/nginx/cnblogs.access.log main; 6 error_log /var/log/nginx/cnblogs.error.log warn; 7 location / { 8 if ($host = 'cnblogs.linuxds.com') { 9 rewrite ^/(.*) http://www.cnblogs.com redirect; 10 } 11 } 12 }
1 [root@nginx01 ~]# nginx -t -c /etc/nginx/nginx.conf #检查配置文件 2 [root@nginx01 ~]# nginx -s reload #重载配置文件
1 [root@nginx01 ~]# mkdir /usr/share/nginx/file/ 2 [root@nginx01 ~]# echo '<h1>File</h1>' > /usr/share/nginx/file/index.html
1 [root@nginx01 ~]# vi /etc/nginx/conf.d/rewrite02.conf 2 server { 3 listen 80; 4 server_name file.linuxds.com; 5 access_log /var/log/nginx/file.access.log main; 6 error_log /var/log/nginx/file.error.log warn; 7 location ~ .* { 8 root /usr/share/nginx/file; 9 if ( !-e $request_filename ) { 10 rewrite ^ http://www.cnblogs.com redirect; 11 } 12 } 13 }
1 [root@nginx01 ~]# nginx -t -c /etc/nginx/nginx.conf #检查配置文件 2 [root@nginx01 ~]# nginx -s reload #重载配置文件
1 [root@nginx01 ~]# mkdir /usr/share/nginx/constant/ 2 [root@nginx01 ~]# echo '<h1>Constant</h1>' > /usr/share/nginx/constant/index.html
1 [root@nginx01 ~]# vi /etc/nginx/conf.d/rewrite03.conf 2 server { 3 listen 80; 4 server_name constant.linuxds.com; 5 access_log /var/log/nginx/constant.access.log main; 6 error_log /var/log/nginx/constant.error.log warn; 7 location ~ .* { 8 root /usr/share/nginx/constant; 9 if ( !-e $request_filename ) { 10 rewrite ^ /itzgr/ break; 11 proxy_pass http://www.cnblogs.com; 12 } 13 } 14 }
1 [root@nginx01 ~]# nginx -t -c /etc/nginx/nginx.conf #检查配置文件 2 [root@nginx01 ~]# nginx -s reload #重载配置文件
1 [root@nginx01 ~]# mkdir /usr/share/nginx/last/ 2 [root@nginx01 ~]# echo '<h1>Last</h1>' > /usr/share/nginx/last/index.html
1 [root@nginx01 ~]# vi /etc/nginx/conf.d/rewrite04.conf 2 server { 3 listen 80; 4 server_name last.linuxds.com; 5 access_log /var/log/nginx/last.access.log main; 6 error_log /var/log/nginx/last.error.log warn; 7 location ~ .* { 8 root /usr/share/nginx/last; 9 rewrite /last.html /index.html last; 10 } 11 }
1 [root@nginx01 ~]# nginx -t -c /etc/nginx/nginx.conf #检查配置文件 2 [root@nginx01 ~]# nginx -s reload #重载配置文件
1 [root@nginx01 ~]# mkdir /usr/share/nginx/break/ 2 [root@nginx01 ~]# echo '<h1>Break</h1>' > /usr/share/nginx/break/index.html
1 [root@nginx01 ~]# vi /etc/nginx/conf.d/rewrite05.conf 2 server { 3 listen 80; 4 server_name break.linuxds.com; 5 access_log /var/log/nginx/break.access.log main; 6 error_log /var/log/nginx/break.error.log warn; 7 location ~ .* { 8 root /usr/share/nginx/break; 9 rewrite /break.html /index.html break; 10 } 11 }
1 [root@nginx01 ~]# nginx -t -c /etc/nginx/nginx.conf #检查配置文件 2 [root@nginx01 ~]# nginx -s reload #重载配置文件
1 [root@nginx01 ~]# mkdir /usr/share/nginx/rewrite/ 2 [root@nginx01 ~]# echo '<h1>Rewrite</h1>' > /usr/share/nginx/rewrite/index.html
1 [root@nginx01 ~]# vi /etc/nginx/conf.d/rewrite06.conf 2 server { 3 listen 80; 4 server_name rewrite.linuxds.com; 5 access_log /var/log/nginx/rewrite.access.log main; 6 error_log /var/log/nginx/rewrite.error.log warn; 7 location ~ .* { 8 root /usr/share/nginx/rewrite; 9 rewrite /rewrite.html /index.html redirect; 10 } 11 }
1 [root@nginx01 ~]# nginx -t -c /etc/nginx/nginx.conf #检查配置文件 2 [root@nginx01 ~]# nginx -s reload #重载配置文件
1 [root@nginx01 ~]# mkdir /usr/share/nginx/permanent/ 2 [root@nginx01 ~]# echo '<h1>Permanent</h1>' > /usr/share/nginx/permanent/index.html
1 [root@nginx01 ~]# vi /etc/nginx/conf.d/rewrite07.conf 2 server { 3 listen 80; 4 server_name permanent.linuxds.com; 5 access_log /var/log/nginx/permanent.access.log main; 6 error_log /var/log/nginx/permanent.error.log warn; 7 location ~ .* { 8 root /usr/share/nginx/permanent; 9 rewrite /permanent.html /index.html permanent; 10 } 11 }
1 [root@nginx01 ~]# nginx -t -c /etc/nginx/nginx.conf #检查配置文件 2 [root@nginx01 ~]# nginx -s reload #重载配置文件
1 [root@nginx01 ~]# mkdir -p /usr/share/nginx/dirweb/dir 2 [root@nginx01 ~]# echo '<h1>Dirweb</h1>' > /usr/share/nginx/dirweb/dir/index.html
1 [root@nginx01 ~]# vi /etc/nginx/conf.d/rewrite08.conf 2 server { 3 listen 80; 4 server_name dirweb.linuxds.com; 5 access_log /var/log/nginx/dirweb.access.log main; 6 error_log /var/log/nginx/dirweb.error.log warn; 7 location ~ .* { 8 root /usr/share/nginx/dirweb/; 9 rewrite ^/html/(.+?).html$ /dir/$1.html permanent; 10 } 11 }
1 [root@nginx01 ~]# nginx -t -c /etc/nginx/nginx.conf #检查配置文件 2 [root@nginx01 ~]# nginx -s reload #重载配置文件
1 [root@nginx01 ~]# mkdir -p /usr/share/nginx/lbreak 2 [root@nginx01 ~]# echo '<h1>Lbreak</h1>' > /usr/share/nginx/lbreak/index.html 3 [root@nginx01 ~]# echo '<h1>Test_Lbreak</h1>' > /usr/share/nginx/lbreak/test.html
1 [root@nginx01 ~]# vi /etc/nginx/conf.d/rewrite09.conf 2 server { 3 listen 80; 4 server_name lbreak.linuxds.com; 5 access_log /var/log/nginx/lbreak.access.log main; 6 error_log /var/log/nginx/lbreak.error.log warn; 7 root /usr/share/nginx/lbreak/; 8 location / { 9 rewrite /last/ /test.html last; 10 rewrite /break/ /test.html break; 11 } 12 location = /test.html { 13 return http://www.cnblogs.com; 14 } 15 }
1 [root@nginx01 ~]# nginx -t -c /etc/nginx/nginx.conf #检查配置文件 2 [root@nginx01 ~]# nginx -s reload #重载配置文件
1 [root@nginx01 ~]# mkdir -p /usr/share/nginx/admin/xhy 2 [root@nginx01 ~]# echo '<h1>Admin</h1>' > /usr/share/nginx/admin/admin.html
1 [root@nginx01 ~]# vi /etc/nginx/conf.d/rewrite10.conf 2 server { 3 listen 80; 4 server_name admin.linuxds.com; 5 access_log /var/log/nginx/admin.access.log main; 6 error_log /var/log/nginx/admin.error.log warn; 7 root /usr/share/nginx/admin/; 8 location / { 9 rewrite /xhyadmin.html /admin.html break; 10 } 11 location /admin.html { 12 return 403; 13 } 14 }
1 [root@nginx01 ~]# nginx -t -c /etc/nginx/nginx.conf #检查配置文件 2 [root@nginx01 ~]# nginx -s reload #重载配置文件
1 # 如果文件不存在则返回400 2 if (!-f $request_filename) { 3 return 400; 4 }
1 # 如果host不是demo.linuxds.com,则301到www.baidu.com中 2 if ( $host != 'demo.linuxds.com' ){ 3 rewrite ^/(.*)$ https://www.baidu.com/$1 permanent; 4 }
1 # 如果请求类型不是POST则返回405 2 if ($request_method = POST) { 3 return 405; 4 }
1 # 如果参数中有 a=1 则301到demo.linuxds.com 2 if ($args ~ a=1) { 3 rewrite ^ http://demo.linuxds.com/ permanent; 4 }
1 # 如果客户使用IE浏览器访问,则重定向到/nginx-ie目录下: 2 if ($http_user_agent ~ MSIE) { 3 rewrite ^(.*)$ /nginx-ie/$1 break; 4 }