nginx重定向功能配置小结
2021/9/28 7:12:38
本文主要是介绍nginx重定向功能配置小结,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
由于工作原因,经常用到nginx,经过不断总结,在此汇总下nginx的url映射部分的特点和规律。
文件存储及调用url:
文件存放路径:D:\attached\attached\image\1571.jpg
调用的url为:http://localhost/attached/image/1571.jpg
一:rewrite写法
rewrite需要root配合,两种方式:
方式1:
location /attached/ { root /; rewrite ^/image/(.*)$ d://attached/$1 break; autoindex on; #启用目录索引功能 autoindex_exact_size off; autoindex_localtime on; }
如上所示,这里的root为:/,即:盘符位置,假如我的nginx安装在D盘,那么这里就是指向D盘。
方式2:
location /attached/ { root D:/attached/; #使用 nginx rewrite 指令 rewrite ^/image/(.*?)$ /$1 break; }
二:alias写法
指定root时:
location / { root D:\attached\attached; index index.html index.htm; } location ^/image/ { alias \image; autoindex on; }
指定root,而alias随便写:
location / { root D:/attached/attached; index index.html index.htm; } location ^/image/ { alias sdsdsfddfsdfs; autoindex on; }
url同样为:http://localhost/image/1571.jpg,也能访问成功。
不指定root,而直接用alias:
location /attached/ { alias D:/attached/attached/; autoindex on; }
三:总结
root:nginx的配置文件中的root,如果没有指定,则指向nginx安装目录的html文件夹。
rewrite模式:
如果根目录不是nginx安装目录,则需要root和重写配合。
alias模式:
nginx的查找路径规律为:root路径和alias路径二选一。lacation后面的是虚拟目录,一般不用root,直接指定alias的写法比较常见。
以上如有错误,欢迎指出!
这篇关于nginx重定向功能配置小结的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-10-29Nginx发布学习:从入门到实践的简单教程
- 2024-10-28Nginx发布:新手入门教程
- 2024-10-21nginx 怎么设置文件上传最大20M限制-icode9专业技术文章分享
- 2024-10-17关闭 nginx的命令是什么?-icode9专业技术文章分享
- 2024-09-17Nginx实用篇:实现负载均衡、限流与动静分离
- 2024-08-21宝塔nginx新增8022端口方法步骤-icode9专业技术文章分享
- 2024-08-21nginx配置,让ws升级为wss访问的方法步骤-icode9专业技术文章分享
- 2024-08-15nginx ws代理配置方法步骤-icode9专业技术文章分享
- 2024-08-14nginx 让访问带有/relid的地址返回404 ,例子 /relid-x-0.36-y-131.html-icode9专业技术文章分享
- 2024-08-14nginx 判断地址有/statics/的路径,指向到/home/html/statics/目录-icode9专业技术文章分享