Nginx的alias的用法及与root的区别
Posted 敲代码的卡卡罗特
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nginx的alias的用法及与root的区别相关的知识,希望对你有一定的参考价值。
以前只知道nginx的location块中的root用法,用起来总是感觉满足不了自己的一些想法。然后终于发现了alias这个东西。
先看toot的用法
location /request_path/image/ { root /local_path/image/; }
这样配置的结果就是当客户端请求 /request_path/image/cat.png 的时候,
Nginx把请求映射为/local_path/image/request_path/image/cat.png
再看alias的用法
location /request_path/image/ { alias /local_path/image/; }
这时候,当客户端请求 /request_path/image/cat.png 的时候,
Nginx把请求映射为/local_path/image/cat.png
对比root就可以知道怎么用了吧~~ :)
以上是关于Nginx的alias的用法及与root的区别的主要内容,如果未能解决你的问题,请参考以下文章
nginx的location配置rootalias用法和区别