常用的Nginx正则表达式
^:匹配输入字符串的起始位置
$:匹配输入字符串的结束位置
*:匹配前面的字符零次或多次。如 "ol*" 能匹配 "o" 及 "ol"、"oll"
+:匹配前面的字符一次或多次。如 "ol+" 能匹配 "ol" 及 "oll"、"olll",但不能匹配“o”
?:匹配前面的字符零次或一次,例如 "do(es)?"能匹配 "do" 或者 "does","?" 等效于 "{0,1}"
.:匹配除 "\n" 之外的任何单个字符,若要匹配包括 "\n" 在内的任意字符,请使用诸如 "[.\n]" 之类的模式
\:将后面接着的字符标记为一个特殊字符或一个原义字符或一个向后引用。如 "\n" 匹配一个换行符,而 "\$" 则匹配 "$"
\d:匹配纯数字[0-9] \s:空白符 \w:任意单词字符包括下划线[A-Za-z0-9_]
{n}:重复 n 次
{n,}:重复 n 次或更多次
{n,m}:重复 n 到 m 次
[]:定义匹配的字符范围
[c]:匹配单个字符c
[a-z]:匹配a-z小写字母的任意一个
[a-zA-Z0-9]:匹配所有大小写字母或数字
():表达式的开始和结束位置
|:或运算符
从功能看 rewrite 和 location 似乎有点像,都能实现跳转,主要区别在于 rewrite 是在同一域名内更改获取资源的路径,而 location 是对一类路径做控制访问或反向代理,还可以 proxy_pass 到其他机器
rewrite 对访问的域名或者域名内的 URL 路径地址重写
location 对访问的路径做访问控制或者代理转发
精准匹配:location = / {...}
一般匹配:location / {...}
正则匹配:location ~ / {...}
= :进行普通字符精确匹配,也就是完全匹配。
^~ :表示普通字符匹配。使用前缀匹配。如果匹配成功,则不再匹配其它 location
~ :区分大小写的匹配。
~* :不区分大小写的匹配。
!~ :区分大小写的匹配取非。
!~* :不区分大小写的匹配取非。
首先精确匹配 =
其次前缀匹配 ^~
其次是按文件中顺序的正则匹配 ~或~*
然后匹配不带任何修饰的前缀匹配
最后是交给 / 通用匹配
(1)location = / {}
=为精确匹配 / ,主机名后面不能带任何字符串,比如访问 / 和 /data,则 / 匹配,/data 不匹配
再比如 location = /abc,则只匹配/abc ,/abc/或 /abcd 不匹配。若 location /abc,则即匹配/abc 、/abcd/ 同时也匹配 /abc/。
(2)location / {}
因为所有的地址都以 / 开头,所以这条规则将匹配到所有请求。比如访问 / 和 /data, 则 / 匹配, /data 也匹配,
但若后面是正则表达式会和最长字符串优先匹配(最长匹配)
(3)location /documents/ {}
匹配任何以 /documents/ 开头的地址,匹配符合以后,还要继续往下搜索其它 location
只有其它 location后面的正则表达式没有匹配到时,才会采用这一条
(4)location /documents/abc {}
匹配任何以 /documents/abc 开头的地址,匹配符合以后,还要继续往下搜索其它 location
只有其它 location后面的正则表达式没有匹配到时,才会采用这一条
(5)location ^~ /images/ {}
匹配任何以 /images/ 开头的地址,匹配符合以后,停止往下搜索正则,采用这一条
(6)location ~* \.(gif|jpg|jpeg)$ {}
匹配所有以 gif、jpg或jpeg 结尾的请求
然而,所有请求 /images/ 下的图片会被 location ^~ /images/ 处理,因为 ^~ 的优先级更高,所以到达不了这一条正则
(7)location /images/abc {}
最长字符匹配到 /images/abc,优先级最低,继续往下搜索其它 location,会发现 ^~ 和 ~ 存在
(8)location ~ /images/abc {}
匹配以/images/abc 开头的,优先级次之,只有去掉 location ^~ /images/ 才会采用这一条
(9)location /images/abc/1.html {}
匹配/images/abc/1.html 文件,如果和正则 ~ /images/abc/1.html 相比,正则优先级更高
优先级总结
(location =) > (location 完整路径) > (location ^~ 路径) > (location ~,~* 正则顺序) > (location 部分起始路径) > (location /)
location匹配总结
首先看优先级:精确=>前缀^~>正则~,~*>一般>通用/
优先级相同:正则看上下顺序,上面的优先;一般匹配看长度,最长匹配的优先
精确、前缀、正则、一般都没有匹配到,最后再看通用匹配
location = /index.html {
root html;
index index.html index.htm;
}
location ^~ /static/ {
root /webroot/static/;
}
location ~* \.(gif|jpg|jpeg|png|css|js|ico)$ {
root /webroot/res/;
}
location / {
proxy_pass http://tomcat_server;
}
rewrite 功能就是使用 nginx 提供的全局变量或自己设置的变量,结合正则表达式和标记实现URL重写以及重定向。
例如:更换域名后需要保持旧的域名能够转到新的域名上、某网页发生改变需要跳转到新的页面、网站防盗链等等需求。
rewrite 只能放在 server{},location{},if{}中,并且默认只能对域名后面的除去传递的参数外的字符串起作用。
例如:http://www.kgc.com/abc/bbs/index.php?a=1&b=2 只对/abc/bbs/index.php重写。
Nginx:通过 ngx_http_rewrite_module 模块支持 URL 重写、支持if条件判断,但不支持else
跳转:从一个 location 跳转到另一个 location,循环最多可以执行 10 次,超过后 nginx 将返回 500 错误
PCRE 支持:perl 兼容正则表达式的语法规则匹配
重写模块 set 指令:创建新的变量并为其赋值
执行server块里面的rewrite指令
执行location匹配
执行选定的location中的rewrite指令
语法格式:rewrite <regex> <replacement> [flag];
regex :表示正则匹配规则。
replacement :表示跳转后的内容。
flag :表示 rewrite 支持的 flag 标记。
last :本条规则匹配完成后,不终止重写后的url匹配,一般用在 server 和 if 中。
break :本条规则匹配完成即终止,终止重写后的 url 匹配,一般使用在 location 中。
redirect :返回 302 临时重定向,浏览器地址会显示跳转后的 URL 地址。
permanent :返回 301 永久重定向,浏览器地址栏会显示跳转后的 URL 地址。
注:last 和 break 最大的不同在于
break 是终止当前 location 的 rewrite 检测,而且不再进行 location 匹配
last 是终止当前 location 的 rewrite 检测,但会继续重试 location 匹配并处理区块中的 rewrite 规则
现在公司旧域名 www.kgc.com 有业务需求变更,需要使用新域名 www.benet.com 代替,但是旧域名不能废除,需要跳转到新域名上,而且后面的参数保持不变。
域名IP映射
echo "192.168.16.16 www.kgc.com www.benet.com" >> /etc/hosts
vim /usr/local/nginx/conf/nginx.conf
server {
listen 80;
server_name www.kgc.com; #域名修改
charset utf-8;
access_log /var/log/nginx/www.kgc.com-access.log; #日志修改
location / {
#添加域名重定向
if ($host = 'www.kgc.com'){ #$host为rewrite全局变量,代表请求主机头字段或主机名
rewrite ^/(.*)$ http://www.benet.com/$1 permanent; #$1为正则匹配的内容,即域名后边的字符串
}
root html;
index index.html index.htm;
}
}
mkdir -p /var/log/nginx #创建日志存放目录
nginx -t
systemctl restart nginx
http://www.kgc.com/test/1.html会跳转到www.benet.com/test/1.html
查看元素可以看到返回301,实现了永久重定向跳转,而且域名后的参数也正常跳转。
今天公司业务新版本上线,要求所有 IP 访问任何内容都显示一个固定维护页面,只有公司 IP :192.168.16.16 访问正常。
vim /usr/local/nginx/conf/nginx.conf
server {
listen 80;
server_name www.kgc.com; #域名修改
charset utf-8;
access_log /var/log/nginx/www.kgc.com-access.log main; #日志修改
#设置是否合法的IP标记
set $rewrite true; #使用 set 指令自定义变量$rewrite,变量值为boole值 true
#判断是否为合法IP
#判断客户端的IP是否为合法IP,合法的客户端就把 $rewrite的值设置为false
if ($remote_addr = "192.168.16.16"){ #当客户端IP为192.168.16.16时,将变量值设为false,不进行重写
set $rewrite false;
}
#除了合法的客户端,其它的都是非法,就要进行重写跳转到维护页面
if ($rewrite = true){ #当变量值为true时,进行重写
rewrite (.+) /weihu.html; #重写在访问IP后边插入/weihu.html,例如192.168.16.18/weihu.html
}
#为维护页面设置专用的目录
location = /weihu.html {
root /var/www/html; #网页返回/var/www/html/weihu.html的内容
}
location / {
root html;
index index.html index.htm;
}
}
mkdir -p /var/log/nginx #手动创建日志存放目录
mkdir -p /var/www/html #创建weihu主页目录
echo "this is weihu web!
" > /var/www/html/weihu.html
systemctl restart nginx
浏览器访问
只有 IP 为 192.168.16.16 能正常访问,其它地址都是维护页面
换一台主机192.168.16.18
域名IP映射
echo "192.168.16.16 www.kgc.com www.benet.com" >> /etc/hosts
现在访问的是 http://bbs.kgc.com/post/,现在需要将这个域名下面的访问都跳转到http://www.kgc.com/bbs/post/
vim /usr/local/nginx/conf/nginx.conf
server {
listen 80;
server_name bbs.kgc.com; #域名修改
charset utf-8;
access_log /var/log/nginx/www.kgc.com-access.log;
#添加
location /post {
rewrite (.+) http://www.kgc.com/bbs$1 permanent; #这里的$1为位置变量,代表/post
}
location / {
root html;
index index.html index.htm;
}
}
mkdir -p /usr/local/nginx/html/bbs/post
systemctl restart nginx
#修改主机IP与域名映射关系
echo "192.168.16.16 bbs.kgc.com">> /etc/hosts
使用浏览器访问
echo "this is 1.html" >> /usr/local/nginx/html/bbs/post/1.html
http://bbs.kgc.com/post/1.html 跳转到http://www.kgc.com/bbs/post/1.html
现在访问http://www.kgc.com/100-(100|200)-100.html 跳转到http://www.kgc.com页面。
vim /usr/local/nginx/conf/nginx.conf
server {
listen 80;
server_name www.kgc.com; #域名修改
charset utf-8;
access_log /var/log/nginx/www.kgc.com-access.log main;
if ($request_uri ~ ^/100-(100|200)-(\d+).html$) { #(\d+)任意数字
rewrite (.+) http://www.kgc.com permanent;
}
location / {
root html;
index index.html index.htm;
}
}
$request_uri:包含请求参数的原始URI,不包含主机名,如:http://www.kgc.com/abc/bbs/index.html?a=1&b=2 中的 /abc/bbs/index.php?a=1&b=2
$uri:这个变量指当前的请求URI,不包括任何参数,如:/abc/bbs/index.html
$document_uri:与$uri相同,这个变量指当前的请求URI,不包括任何传递参数,如:/abc/bbs/index.html
systemctl restart nginx
#域名IP映射
echo "192.168.16.16 www.kgc.com" >> /etc/hosts
http://www.kgc.com/100-200-100.html 或
http://www.kgc.com/100-100-100.html
跳转到http://www.kgc.com页面
要求访问 http://www.kgc.com/upload/123.php 跳转到首页。
vim /usr/local/nginx/conf/nginx.conf
server {
listen 80;
server_name www.kgc.com; #域名修改
charset utf-8;
access_log /var/log/nginx/www.kgc.com-access.log main;
location ~* /upload/.*\.php$ {
rewrite (.+) http://www.kgc.com permanent;
}
location / {
root html;
index index.html index.htm;
}
}
systemctl restart nginx
#域名IP映射
echo "192.168.16.16 www.kgc.com" >> /etc/hosts
浏览器访问
http://www.kgc.com/upload/123.php 跳转到http://www.kgc.com页面
要求访问一个具体的页面如 http://www.kgc.com/abc/123.html 跳转到首页
vim /usr/local/nginx/conf/nginx.conf
server {
listen 80;
server_name www.kgc.com; #域名修改
charset utf-8;
access_log /var/log/nginx/www.kgc.com-access.log main;
location ~* ^/abc/123.html {
rewrite (.+) http://www.kgc.com permanent;
}
location / {
root html;
index index.html index.htm;
}
}
systemctl restart nginx
#域名IP映射
echo "192.168.16.16 www.kgc.com" >> /etc/hosts
http://www.kgc.com/abc/123.html 跳转到www.kgc.com
用 location + rewrite 和 if + rewrite 两种方法
将/bbs路径下的所有以.php为结尾的访问请求全都跳转到http://www.kgc.com
location ~ ^/bbs/.*\.php$ {
rewrite (.+) http://www.kgc.com permanent;
}
if ($uri ~ ^/bbs/.*\.php$) {
rewrite (.+) http://www.kgc.com permanent;
}
systemctl restart nginx
#域名IP映射
echo "192.168.16.16 www.kgc.com" >> /etc/hosts
http://www.kgc.com/bbs/kgc/test/ky.php
用 location + rewrite 和 if + rewrite 两种方法
将访问/test路径下的test.html文件的访问请求全都跳转到http://www.kgc.com
location ~* ^/test/test.html$ {
rewrite (.+) http://www.kgc.com permanent;
}
if ($uri ~* ^/test/test.html$) {
rewrite (.+) http://www.kgc.com permanent;
}
systemctl restart nginx
#域名IP映射
echo "192.168.16.16 www.kgc.com" >> /etc/hosts
http://www.kgc.com/test/test.html