rewrite
按路径访问
[root@nginx ~]# cd /usr/local/nginx/html/
[root@nginx html]# ls
404.html 50x.html index.html index.php
[root@nginx html]# mkdir images
[root@nginx html]# cd images/
[root@nginx images]# vim /usr/local/nginx/conf/nginx.conf
location / {
root html;
index index.html;
}
[root@nginx images]# systemctl reload nginx.service
语法:rewrite regex replacement flag;,如:
[root@nginx images]# cd ..
[root@nginx html]# ls
404.html 50x.html images index.html index.php
[root@nginx html]# mv images imgs
[root@nginx html]# ls
404.html 50x.html imgs index.html index.php
[root@nginx html]#
location /images {
rewrite ^/images/(.*\.jpg)$ /imgs/$1 break;
}
此处的$1用于引用(.*.jpg)匹配到的内容,又如:
location /images {
rewrite ^/images/(.*\.jpg)$ https://www.keaidian.com/uplo
ads/allimg/190424/24110307_8.jpg break;
}
[root@nginx html]# systemctl reload nginx.service
[root@nginx html]# mkdir bbs
[root@nginx html]# cd bbs
[root@nginx bbs]# curl -o index.html https://bbs.pku.edu.cn/v2/home.php
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--100 40151 100 40151 0 0 64655 0 --:--:-- --:--:-- --:--:-- 64655
映射一下
添加一个域名端口用网站登录
server {
listen 80;
server_name bbs.cys.com;
location / {
root html//bbs;
index index.html;
}
}
常见的flag
flag | 作用 |
---|---|
last | 基本上都用这个flag,表示当前的匹配结束,继续下一个匹配,最多匹配10个到20个。一旦此rewrite规则重写完成后,就不再被后面其它的rewrite规则进行处理。而是由UserAgent重新对重写后的URL再一次发起请求,并从头开始执行类似的过程 |
break | 中止Rewrite,不再继续匹配。一旦此rewrite规则重写完成后,由UserAgent对新的URL重新发起请求,且不再会被当前location内的任何rewrite规则所检查 |
redirect | 以临时重定向的HTTP状态302返回新的URL |
permanent | 以永久重定向的HTTP状态301返回新的URL |
if应用
语法:if (condition) {…}
基于浏览器实现分离案例
if ($http_user_agent ~ Firefox) {
rewrite ^(.*)$ /firefox/$1 break;
}
if ($http_user_agent ~ MSIE) {
rewrite ^(.*)$ /msie/$1 break;
}
if ($http_user_agent ~ Chrome) {
rewrite ^(.*)$ /chrome/$1 break;
}
防盗链案例
location ~* \.(jpg|gif|jpeg|png)$ {
valid_referers none blocked www.idfsoft.com;
if ($invalid_referer) {
rewrite ^/ http://www.idfsoft.com/403.html;
}
}