一、nginx程序location配置方法
作用:
匹配指定的uri信息,可以根据访问不同的uri信息,做出不同处理方案
举例:
访问/oldboy 目录时, 禁止10.0.0.0/24 网段访问
访问/oldgirl目录时, 禁止172.16.1.0/24 网段访问
访问站点下面其他目录, 没有任何限制
vim /etc/nginx/conf.d/www.html
server {
listen 80;
server_name www.oldboy.com;
root /usr/share/nginx/html/www;
index index.html;
location /oldboy {
allow all;
deny 10.0.0.0/24;
}
location /oldgirl {
allow all;
deny 172.16.1.0/24;
}
}
如何匹配uri信息:
Syntax: location [ = | ~ | ~* | ^~ ] uri { ... }
Default: —
Context: server, location
= 精确匹配指定uri信息== grep -o 只要匹配上的信息
~ 模糊匹配指定uri信息(区分信息大小写) == grep 匹配过滤信息
~* 模糊匹配指定uri信息(不区分大小写) == grep -i 匹配过滤信息
^~ 进行优先匹配/不识别扩展正则信息
location = / {
[ configuration A ]
}
location / { --- 进行默认匹配
[ configuration B ]
}
location /documents/ { --- 根据资源目录信息进行匹配
[ configuration C ]
}
location ^~ /images/ { --- 进行优先匹配 /images/目录
[ configuration D ]
}
location ~* \.(gif|jpg|jpeg)$ {
[ configuration E ]
}
实践配置:
第一个历程: 编写配置文件
vim www.conf
server {
listen 80;
server_name www.oldboy.com;
# www.oldboy.com / --> index.html
location / { --- 默认匹配
root /html/www;
index index.html;
}
# www.oldboy.com / --> oldboy.html --- 精确匹配的location 会最优先 01
location = / {
root /html/www;
index oldboy.html;
}
# www.oldboy.com/documents/ --> oldgirl.html --- 匹配指定目录,显示目录下面的首页文件信息
location /documents/ {
root /html/www;
index oldgirl.html;
}
# www.oldboy.com/images/ --> oldboy.jpg --- 优先匹配 02
location ^~ /images/ {
root /html/www;
index oldboy.jpg;
}
# www.oldboy.com/xxxx.jpg --> xxx.jpg
location ~* \.(jpg|png|gif)$ {
root /html/www;
}
}
第二个历程: 根据配置文件信息创建相应目录和文件
cd /html/www
echo default-page >index.html
echo oldboy-page >oldboy.html
mkdir documents ; echo oldgirl-page > documents/oldgirl.html
mkdir images
测验:
oldboy.jpg ---> /html/www/oldboy/ www.oldboy.com/meinv01.html 显示 oldboy.jpg 图片
oldgirl.jpg ---> /html/www/oldgirl/ www.oldboy.com/meinv02.html 显示 oldgirl.jpg 图片
解答及思路
第一个步骤: 根据不同uri显示不同页面信息
location /meinv01.html {
return 200 "meinv01"
}
location /meinv02.html {
return 200 "meinv02"
}
第二个步骤: 完善配置文件
vim www.conf
server {
listen 80;
server_name www.oldboy.com;
location / {
root /html/www;
}
location /meinv01.html {
return 301 http://www.oldboy.com/oldboy/oldboy.jpg;
}
location /meinv02.html {
return 301 http://www.oldboy.com/oldgirl/oldgirl.jpg;
}
}
总结:
- 配置多个location时, 需要有一个默认的location
- 访问的uri文件目录信息必须存在,不存在时必须使用跳转功能
- 访问指定资源不存在,可以利用return功能进行跳转访问
二、nginx程序rewrite跳转功能
说明:
用户浏览器 输入域名地址信息A -- web服务器 -- 自动处理 -- 访问域名地址信息B
配置信息
Syntax: rewrite regex replacement [flag];
Default: —
Context: server, location, if
regex: 正则匹配的信息(url/uri)
replacement: 替换成什么信息/跳转成什么地址信息
[flag]: 指定进行跳转的方式
方式一: last
用户访问网站,进行跳转之后,会重启再次发起访问 不会改变url/uri信息
方式二: break
用户访问网站,进行跳转之后,会直接访问跳转之后的资源信息 不会改变url/uri信息
实践说明:
server {
listen 80;
server_name www.oldboy.com;
root /html/www;
# www.oldboy.com/break/ -- 跳转(break) -- www.oldboy.com/test/
location ~ ^/break/ {
rewrite ^/break/ /test/ break;
}
# www.oldboy.com/last/ -- 跳转(last) -- www.oldboy.com/test/
location ~ ^/last/ {
rewrite ^/last/ /test/ last;
}
# www.oldboy.com/test/ --- 页面显示 ok
location /test/ {
default_type application/json;
return 200 'ok';
}
}
方式三: redirect (临时跳转)
将地址url/uri信息进行跳转变化
方式四: permanent(永久跳转)
将地址url/uri信息进行跳转变化
回顾:临时跳转和永久跳转区别:
临时跳转: 不会让浏览器记录跳转信息 (uri信息跳转)
用户端访问网站 --- 浏览器 --- 网站服务器 --- 会将访问地址进行跳转
浏览器(访问跳转后地址) --- 网站服务器 --- 返回页面信息
用户端访问网站 --- 浏览器 --- 网站服务器 --- 会将访问地址进行跳转
浏览器(访问跳转后地址) --- 网站服务器 --- 返回页面信息
永久跳转: 会让浏览器记录跳转信息 (url信息跳转)
用户端访问网站 --- 浏览器 --- 网站服务器 --- 会将访问地址进行跳转(告知浏览器进行记录)
浏览器(访问跳转后地址) (记录跳转信息) --- 网站服务器 --- 返回页面信息
用户端访问网站 --- 浏览器(自动访问跳转后地址) --- 网站服务器 --- 返回页面信息
实践说明
vim www.conf
server {
listen 80;
server_name www.oldboy.com;
# www.oldboy.com/break/ -- 跳转(break) -- www.oldboy.com/test/
location ~ ^/break/ {
root /html/www;
index index.html;
rewrite ^/break/ /test/ redirect;
}
# www.oldboy.com/last/ -- 跳转(last) -- www.oldboy.com/test/
location ~ ^/last/ {
root /html/www;
index index.html;
rewrite ^/last/ /test/ permanent;
}
# www.oldboy.com/test/ --- 页面显示 ok
location /test/ {
root /html/www;
index index.html;
default_type application/json;
return 200 'ok';
}
}
uri地址跳转练习:
例1: 用户访问www.oldboy.com/abc/1.html 实际上真实访问是/ccc/bbb/2.html;即:http://www.oldboy.com/abc/1.html ==> http://www.oldboy.com/ccc/bbb/2.html
第一个历程: 创建站点目录环境信息
跳转前环境: mkdir /html/www/abc -p; echo oldboy >/html/www/abc/1.html
跳转后环境: mkdir /html/www/ccc/bbb -p; echo oldboy >/html/www/ccc/bbb/2.html
第二个历程: 编写配置文件
[root@web02 conf.d]# cat www.conf
server {
listen 80;
server_name www.oldboy.com;
location / {
root /html/www;
index index.html;
}
location /abc/ {
root /html/www;
index index.html;
rewrite (.*) /ccc/bbb/2.html redirect;
}
}
例2:用户访问www.oldboy.com/2014/ccc/bbb/2.html 实际上真实访问是/2018/ccc/bbb/2.html ;即:http://www.oldboy.com/2014/ccc/bbb/2.html ==> http://www.oldboy.com/2018/ccc/bbb/2.html
第一个历程: 创建站点目录环境信息
跳转后环境: mkdir /html/www/2018/ccc/bbb/ -p; echo 2018 >/html/www/2018/ccc/bbb/2.html
第二个历程: 编写配置文件信息
vim www.conf
server {
listen 80;
server_name www.oldboy.com;
location / {
root /html/www;
index index.html;
}
location /2014/ {
root /html/www;
index index.html;
rewrite ^/2014/(.*) /2018/$1 redirect;
}
}