标签:
通过Rewrite规则可以实现规范的URL、根据变量来做URL转向及选择配置,用好Rewrite有时起到事半功倍的效果。
语法
Nginx的Rewrite相比Apache的要好理解很多,主要使用指令有if、rewrite、set、return、break等,其中rewrite是最关键的指令。
如果指定的正则表达式能匹配URI,此URI将被replacement参数定义的字符串改写。rewrite指令按其在配置文件中出现的顺序执行。flag可以终止后续指令的执行。如果replacement的字符串以“http://”或“https://”开头,nginx将结束执行过程,并返回给客户端一个重定向。语法: rewrite regex replacement [flag];
默认值: —
上下文: server, location, if
server { ... rewrite ^(/download/.*)/media/(.*)\..*$ $1/mp3/$2.mp3 last; rewrite ^(/download/.*)/audio/(.*)\..*$ $1/mp3/$2.ra last; return 403; ... }
location /download/ { rewrite ^(/download/.*)/media/(.*)\..*$ $1/mp3/$2.mp3 break; rewrite ^(/download/.*)/audio/(.*)\..*$ $1/mp3/$2.ra break; return 403; }
rewrite ^/users/(.*)$ /show?user=$1? last;
停止处理当前这一轮的ngx_http_rewrite_module指令集。如:语法: break;
默认值: —
上下文: server, location, if
if ($slow) { limit_rate 10k; break; }
rewrite "/photos/([0-9]{2})([0-9]{2})([0-9]{2})" /path/to/photos/$1$2/$1$2$3.png>
用于检查condition,如果为真,执行定义在大括号中的rewrite模块指令。if指令不支持嵌套,不支持多个条件&&和||处理。语法: if (condition) { ... }
默认值: —
上下文: server, location
if ($http_user_agent ~ MSIE) { rewrite ^(.*)$ /msie/$1 break; } if ($http_cookie ~* "id=([^;]+)(?:;|$)") { set $id $1; } if ($request_method = POST) { return 405; } if ($slow) { limit_rate 10k; } if ($invalid_referer) { return 403; }
为指定变量variable设置变量值value。value可以包含文本、变量或者它们的组合,举例参考下文。语法: set variable value;
默认值: —
上下文: server, location, if
开启或者关闭将ngx_http_rewrite_module模块指令的处理日志以notice级别记录到错误日志中。语法: rewrite_log on | off;
默认值:
rewrite_log off;
上下文: http, server, location, if
控制是否记录变量未初始化的警告到日志。语法: uninitialized_variable_warn on | off;
默认值:
uninitialized_variable_warn on;
上下文: http, server, location, if
停止处理并返回指定code给客户端。状态码可以使用这些值:204、400、402-406、408、410、411、413、416及500-504,此外,非标准状态码444将以不发送任何Header头的方式结束链接。语法: return code [text];
return code URL;
return URL;
默认值: —
上下文: server, location, if
nginx用到的全局变量
$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 the machine’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_method #GET或POST $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 #请求到达服务器的端口号。 $uri #不带请求参数的当前URI,$uri不包含主机名,如”/foo/bar.html”。该值有可能和$request_uri 不一致。$request_uri是浏览器发过来的值。该值是rewrite后的值。例如做了internal redirects后。
Rewrite规则实例
if( !-e $request_filename ) { rewrite ^/(.*)$ index.php last; }
rewrite ^/(\d+)/(.+)/ /$2?id=$1 last;
if( $http_user_agent ~ MSIE) { rewrite ^(.*)$ /ie/$1 break; }
location ~ ^/(cron|templates)/ { deny all; break; }
location ~ ^/data { deny all; }
location ~ .*\.(sh|flv|mp3)$ { return 403; }
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ { expires 30d; } location ~ .*\.(js|css)$ { expires 1h; }
Nginx和Apache的Rewrite规则实例对比
#Apache RewriteRule ^/abc/$ /web/abc.php [L] #Nginx rewrite ^/abc/$ /web/abc.php last ;
rewrite "^/([0-9]{5}).html$" /x.php?id=$1 last;
#Apache RewriteRule ^/html/([a-zA-Z]+)/.*$ /$1/ [R=301,L] #Nginx rewrite ^/html/([a-zA-Z]+)/.*$ http://$host/$1/ premanent;
RewriteCond %{HTTP_HOST} !^(.*?)\.aaa\.com$ [NC] RewriteCond %{HTTP_HOST} !^localhost$ RewriteCond %{HTTP_HOST} !^192\.168\.0\.(.*?)$ RewriteRule ^/(.*)$ http://www.xiaozhe.com [R,L]
if( $host ~* ^(.*)\.aaa\.com$ ) { set $allowHost ‘1’; } if( $host ~* ^localhost ) { set $allowHost ‘1’; } if( $host ~* ^192\.168\.1\.(.*?)$ ) { set $allowHost ‘1’; } if( $allowHost !~ ‘1’ ) { rewrite ^/(.*)$ http://www.xiaozhe.com redirect ; }
标签:
原文地址:http://www.cnblogs.com/hanxu/p/4621680.html