rewrite是nginx一个特别重要的指令,该指令可使用正则表达式改写URI。能够指定一个或多个rewrite指令,按顺序匹配。php
~ 区分大小写匹配 ~* 不区分大小写匹配 !~ 和 !~* 区分大小写不匹配及不区分大小写不匹配
-f和!-f 判断是否存在文件 -d和!-d 判断是否存在目录 -e和!-e 判断是否存在文件或目录 -x和!-x 判断文件是否可执行
set if return break rewrite
1.使用范围:server,location,if; 2.中断当前相同做用域的其余nginx配置。
1.使用范围:server,location 2.检查一个条件是否符合。If指令不支持嵌套,不支持多个条件&&和||处理。
1.格式:return code ;
2.使用范围:server,location,if;
3.结束规则的执行并返回状态码给客户端。css
1.使用环境:server,location,if 2.定义一个变量,并给变量赋值。变量的值能够为文本、变量或者变量的组合。 3.set $var "hello world"
rewrite regex replacement [flag] flag标志位有四种: break:中止rewrite检测,也就是说当含有break flag的rewrite语句被执行时,该语句就是rewrite的最终结果。 last:中止rewrite检测,可是跟break有本质的不一样,last的语句不必定是最终结果。 redirect:返回302临时重定向,通常用于重定向到完整的URL(包含http:部分) permanent:返回301永久重定向,通常用于重定向到完整的URL(包含http:部分)
if( !-e $request_filename ) { rewrite ^/(.*)$ index.php last; }
rewrite ^/(\d+)/(.+)/ /$2?id=$1 last;
if( $http_user_agent ~ MSIE) { rewrite ^(.*)$ /ie/$1 break; }
location ~ ^/data
{
deny all;
}html
location ~ .*\.(sh|flv|mp3)$ { return 403; }
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ { expires 30d; }
location ~*^.+\.(jpg|jpeg|gif|png|swf|rar|zip|css|js)$ { valid_referers none blocked *.linuxidc.com*.linuxidc.net localhost 208.97.167.194; if ($invalid_referer) { rewrite ^/ http://img.linuxidc.net/leech.gif; return 412; break; } access_log off; root /opt/lampp/htdocs/web; expires 3d; break; }
/job-123-456-789.html 指向/job/123/456/789.html rewrite^/job-([0-9]+)-([0-9]+)-([0-9]+)\.html$ /job/$1/$2/jobshow_$3.html last;
server { listen 80; server_name jump.linuxidc.com; index index.html index.htm index.php; root /opt/lampp/htdocs/www; rewrite ^/ http://www.linuxidc.com/; access_log off; }
server_name www.linuxidc.comwww.linuxidc.net; index index.html index.htm index.php; root /opt/lampp/htdocs; if ($host ~ "linuxidc\.net") { rewrite ^(.*) http://www.linuxidc.com$1permanent; }
arg_PARAMETER #这个变量包含GET请求中,若是有变量PARAMETER时的值。 args #这个变量等于请求行中(GET请求)的参数,如:foo=123&bar=blahblah; binary_remote_addr #二进制的客户地址。 body_bytes_sent #响应时送出的body字节数数量。即便链接中断,这个数据也是精确的。 content_length #请求头中的Content-length字段。 content_type #请求头中的Content-Type字段。 cookie_COOKIE #cookie COOKIE变量的值 document_root #当前请求在root指令中指定的值。 document_uri #与uri相同。 host #请求主机头字段,不然为服务器名称。 hostname #Set to themachine’s hostname as returned by gethostname http_HEADER is_args #若是有args参数,这个变量等于”?”,不然等于”",空值。 http_user_agent #客户端agent信息 http_cookie #客户端cookie信息 limit_rate #这个变量能够限制链接速率。 query_string #与args相同。 request_body_file #客户端请求主体信息的临时文件名。 request_method #客户端请求的动做,一般为GET或POST。 remote_addr #客户端的IP地址。 remote_port #客户端的端口。 remote_user #已经通过Auth Basic Module验证的用户名。 request_completion #若是请求结束,设置为OK。 当请求未结束或若是该请求不是请求链串的最后一个时,为空(Empty)。 request_filename #当前请求的文件路径,由root或alias指令与URI请求生成。 request_uri #包含请求参数的原始URI,不包含主机名,如:”/foo/bar.php?arg=baz”。不能修改。 scheme #HTTP方法(如http,https)。 server_protocol #请求使用的协议,一般是HTTP/1.0或HTTP/1.1。 server_addr #服务器地址,在完成一次系统调用后能够肯定这个值。 server_name #服务器名称。 server_port #请求到达服务器的端口号。
[转] 来自:https://mp.weixin.qq.com/s/4GGvl4zcuY4iTr0vS0321glinux