flag标记说明
last:本条规则匹配完成终止当前location的规则,继续向下新的location uri规则
break:本条规则匹配完成即终止,不再匹配后面的任何规则
redirect:返回302临时重定向,浏览器地址会显示跳转后的URL地址,关闭服务,无法重定向
permannet:返回301永久重定向,浏览器地址栏会显示跳转后的URL地址,关闭服务,依然可以重定向
$1 $2 为正则中第几个()中匹配的值
案例:
实
现不同终端访问不同的域名的跳转,其中如果是IE浏览器访问,则提示此浏览器不兼容,建议更换chrome浏览器继续访问
说明:浏览器访问www.yjy.com:如果是手机访问,将跳到http://www.testphone.com/;如果是QQ浏览器,将跳转到http://www.aqqbrowser.com/中;最后,如果是IE浏览器访问,会跳到一个提示页,提示建议更换chrome浏览器:
1、创建目录及文件
#cd /usr/local/nginx/html
# echo "欢迎使用手机端登录" >phone.html
#echo "this is QQBrowser" >QQBrowser.html
#mkdir warie
# echo "此浏览器不兼容,建议更换chrome浏览器继续访问" > warie/warie.html
2、编译vhost.conf配置文件,代码见下:
server {
listen 80;
server_name www.yjy.com;
charset utf-8;
root /usr/local/nginx/html;
index index.html index.htm;
access_log logs/host.access.log main;
# error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/local/nginx/html;
}
if ($http_user_agent ~ MSIE){
rewrite ^/(.*)$ /warie/warie.html;
}
if ($http_user_agent ~* QQBrowser){
rewrite ^/(.*)$ http://www.aQQBrowser.com/$1;
}
if ($http_user_agent ~* Android){
rewrite ^/(.*)$ http://www.testphone.com;
}
location / {
root html;
index index.html index.htm;
}
}
server {
listen 80;
server_name www.aQQBrowser.com;
charset utf-8;
access_log logs/host.access.log main;
# error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
location / {
root html;
index QQBrowser.html index.htm;
}
}
server {
listen 80;
server_name www.testphone.com;
charset utf-8;
access_log logs/host.access.log main;
# error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
location / {
root html;
index phone.html index.htm;
}
}
效果1、
当QQ浏览器访问www.yjy.com时,会跳转至www.aQQBrowser.com
效果2:(F12模拟)
手机端访问www.yjy.com时,会跳转至www.testphone.com
效果3、IE浏览器
另
1、flag 之 last 简单用法之一,不使用$1
last: 使用改写后的URL,重新在location上匹配
location /aaa/ddd {
rewrite /aaa/ddd /bbb/ddd last;
}
location /bbb {
proxy_pass http://127.0.0.1:8554;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $remote_addr;
}
变量说明
$args 此变量与请求行中的参数相等
$content_length 等于请求行的“Content_Length”的值。
$content_type 等同与请求头部的”Content_Type”的值
$document_root 等同于当前请求的root指令指定的值
$document_uri 与$uri一样
$host 与请求头部中“Host”行指定的值或是request到达的server的名字(没有Host行)一样
$limit_rate 允许限制的连接速率
$request_method 等同于request的method,通常是“GET”或“POST”
$remote_addr 客户端ip
$remote_port 客户端port
$remote_user 等同于用户名,由ngx_http_auth_basic_module认证
$request_filename 当前请求的文件的路径名,由root或alias和URI request组合而成
$request_body_file
$request_uri 含有参数的完整的初始URI
$query_string 与$args一样
$server_protocol 等同于request的协议,使用“HTTP/1.0”或“HTTP/1.1”
$server_addr request到达的server的ip,一般获得此变量的值的目的是进行系统调用。为了避免系统调用,有必要在listen指令中指明ip,并使用bind参数。
$server_name 请求到达的服务器名
$server_port 请求到达的服务器的端口号
$uri 等同于当前request中的URI,可不同于初始值,例如内部重定向时或使用index
set $URL $scheme://$http_host$request_uri; #也可以在localtion块中定义URL
$scheme 等于http或 https
$host 与$http_host区别,都等于域名,如toyix.otoyix.com
$http_host始终等于HTTP_HOST请求标头。
$host等于$http_host,小写且没有端口号(如果存在),除非HTTP_HOST不存在或为空值。在这种情况下,$host等于server_name处理请求的服务器的指令的值。
-----------------end