符号 | 描述 |
---|---|
^ | 匹配输入字符申的起始位置 |
$ | 匹配输入字符串的结束位置 |
* | 匹配前面的字符零次或多次 |
+ | 匹配前面的字符一次或多次 |
? | 匹配前面的字符零次或一次 |
. | 匹配除"\n"之外的任何单个字符 |
\ | 将后面接着的字符标记为一个特殊字符或一个原义字符或一个向后引用 |
\d | 匹配纯数字 |
{n} | 重复n次 |
{n,} | 重复n次或更多次 |
{n,m} | 重复n到m次 |
[] | 定义匹配的字符范围 |
[c] | 匹配单个字符 |
[a-z] | 匹配a-z小写字母的任意一个 |
[a-zA-Z0-9] | 匹配所有大小写字母或数字 |
() | 表达式的开始和结束位置 |
| | 或运算符 |
location大致可以分为以下三类:
符号 | 描述 |
---|---|
= | 进行普通字符精准匹配,也就是完全匹配 |
^~ | 表示普通字符匹配,使用前缀匹配;如果匹配成功,则不再匹配后续location |
~ | 区分大小写的匹配 |
~* | 不区分大小写的匹配 |
!~ | 区分大小写的匹配取非 |
!~* | 不区分大小写的匹配取非 |
- localtion = / {}
=为精准匹配 /,主机名后面不能带任何字符串,比如访问 / 和 /xcf,则 / 匹配,/xcf 不匹配
- location / {}
因为所有的地址都以 / 开头,所以这条规则将匹配到所有的请求,比如访问 / 和 /data,则 / 匹配,/data也匹配
但若后面是正则表达式,则会和最长字符串优先匹配(最长匹配)
- location /documents/ {}
匹配任何以 /documents/ 开头的地址,匹配符合以后,还要继续往下搜索其它 location
- location /documents/abc {}
匹配任何以 /documents/abc 开头的地址,匹配符合后,还要继续往下搜索其他 location
只有其他 location 后面的正则表达式没有匹配到时,才会采用这一条
- location ^~ /images/ {}
匹配任何以 /images/ 开头的地址,匹配符合以后,停止往下搜索正则,并采用这条
- location ~* .(gif|jpg|jpeg)$ {}
匹配所有以 gif、jpg、jpeg 为结尾的请求
然而,所有请求 /images/ 下的图片会被 location ^~ /images/ 处理,因为 ^~ 的优先级更高,所以到达不了这一条正则
- location /images/abc {}
最长字符匹配到 /images/abc,优先级最低,继续往下搜索其它 location,会发现 ^~ 和 ~ 存在
- location ~ /images/abc {}
匹配以 /images/abc 开头的,优先级次之,只有去掉 location ^~ /images 才会采用这一条
- location /images/abc/1.html {}
匹配 /images/abc/1.html 文件,如果和正则 ~ /images/abc/1.html 相比,正则优先级更高
- 优先级总结:
(location = 完整路径) > (location ^~ 路径) > (location ,* 正则顺序) > (location 部分起始路径) > (location /)
在实际网站的使用中,至少有三个匹配规则定义:
第一个必选规则:
直接匹配网站根,通过域名访问网站首页比较频繁,使用这个会加速处理,比如说官网
可以是一个静态首页,也可以直接转发给后端应用服务器
location / {
root
html;
index
index.html index.html;
}
第二个必选规则:
处理静态文件请求,这是nginx作为http服务器的强项
有两种配置模式,目录匹配或后缀匹配,任选其一或搭配使用
location ^~ /static/ {
root /webroot/static/;
}
location ~* \.(html|gif|jpg|jpeg|png|css|js|ico)$ {
root /webroot/res/ ;
}
第三个必选规则:
就是通用规则,比如用来转发带.php、.jsp后缀的动态请求到后端应用服务器
非静态文件请求就默认是动态请求
location / {
proxy_ pass http://tomcat_server;
rewrite <regex> <replacement> [flag];
flag标记说明:
- last :本条规则匹配完成后,继续向下匹配新的location URL规则,一般用在server和if中。
- break:本条规则匹配完成即终止,不再匹配后面的任何规则,一般使用在location 中
- redirect:返回302临时重定向,浏览器地址会显示跳转后的URL地址
- permanent:返回301永久重定向,浏览器地址栏会显示跳转后的URL地址
环境准备:
需求:现在公司旧域名www.xcf.com有业务需求变更,需要使用新域名www.zxc.com代替,但是旧域名不能废除,需要跳转到新域名上,而且后面的参数保持不变
mkdir -p /var/log/nginx/
vim /usr/local/nginx/conf/nginx.conf
server {
listen 80;
server_name www.xcf.com;
#修改域名
#charset koi8-r;
access_log /var/log/nginx/www.xcf.com-access.log;
##日志保存路径修改
location / {
if ($host = 'www.xcf.com') {
#$host为rewrite全局变量,代表请求主机头字段或主机名
rewrite ^/(.*)$ http://www.zxc.com/$1 permanent;
#$1为正则匹配得内容,即域名后边得字符串
}
root html;
index index.html index.htm;
}
echo "192.168.126.15 www.xcf.com" >> /etc/hosts
echo "192.168.126.15 www.zxc.com" >> /etc/hosts
systemctl restart nginx.service
需求:公司业务新版本上线,要求所有 IP 访问任何内容都显示是一个固定维护的页面,只有公司 IP 192.168.126.15 访问正常
vim /usr/local/nginx/conf/nginx.conf
server {
listen 80;
server_name www.xcf.com;
#charset koi8-r;
access_log /var/log/nginx/www.xcf.com-access.log;
##设置是否是合法的IP标记
set $rewrite true;
#设置变量$rewrite,变量值为boole值true
#判断是否为合法IP
if ($remote_addr = "192.168.126.15") {
set $rewrite false;
#当客户端IP为192.168.126.15时,将变量值设为flase,不进行重写
}
##除了合法IP,其它都是非法IP,进行重写跳转到维护页面
if ($rewrite = true) {
#当变量值为true时,进行重写
rewrite (.+) /weihu.html;
#重写在访问IP后边插入/weihu.html,例如192.168.126.65/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/www/html
echo 'weihu!!
' > /var/www/html/weihu.html
systemctl restart nginx.service
需求:网站(http://bbs.xcf.com)更换域名,需要将旧域名下的访问都跳转至新网址中(http:www.xcf.com/bbs)
vim /usr/local/nginx/conf/nginx.conf
server {
listen 80;
server_name bbs.xcf.com;
#修改域名
#charset koi8-r;
access_log /var/log/nginx/www.xcf.com-access.log;
#添加
location /post {
rewrite (.+) http://www.xcf.com/bbs$1 permanent;
#这里$1为位置变量,代表/post
}
location / {
root html;
index index.html index.htm;
}
mkdir -p /usr/local/nginx/html/bbs/post
echo "this is 1.html" >> /usr/local/nginx/html/bbs/post/1.html
echo "192.168.126.15 bbs.xcf.com" >> /etc/hosts
systemctl restart nginx.service
此时用浏览器访问 http://bbs.xcf.com/post/1.html 会自动跳转到 http://www.xcf.com/bbs/post/1.html
需求:访问 http://www.xcf.com/100-(100|200)-100.html 会跳转到 http://www.xcf.com的页面
vim /usr/local/nginx/conf/nginx.conf
server {
listen 80;
server_name www.xcf.com;
#修改域名
#charset koi8-r;
access_log /var/log/nginx/www.xcf.com-access.log;
if ($request_uri ~ ^/100-(100|200)-(\d+)\.html$) {
#设置正则匹配
rewrite (.*) http://www.xcf.com permanent;
#设置重写
}
location / {
root html;
index index.html index.htm;
}
systemctl restart nginx.service
使用浏览器访问 http://www.xcf.com/100-100-100.html 或 http://www.xcf.com/100-200-100.html会自动跳转到 http://www.xcf.com页面
需求:要求访问 http://www.xcf.com/upload/123.php 跳转到首页
server {
listen 80;
server_name www.xcf.com;
#修改域名
#charset koi8-r;
access_log /var/log/nginx/www.xcf.com-access.log;
location ~* /upload/.*\.php$ {
rewrite (.+) http://www.xcf.com permanent;
}
location / {
root html;
index index.html index.htm;
}
systemctl restart nginx.service
浏览器访问 http://www.xcf.com/upload/123.php 跳转到 http://www.xcf.com 首页
要求访问一个具体的页面,如: http://www.xcf.com/abc/123.html,能跳转到首页
vim /usr/local/nginx/conf/nginx.conf
server {
listen 80;
server_name www.xcf.com;
#修改域名
#charset koi8-r;
access_log /var/log/nginx/www.xcf.com-access.log;
location ~* /abc/123.html {
rewrite (.+) http://www.xcf.com permanent;
}
location / {
root html;
index index.html index.htm;
}
systemctl restart nginx.service
浏览器访问 http://www.xcf.com/abc/123.html 跳转到 http://www.gcc.com