Nginx的alias的用法及和root的区别
程序员文章站
2022-05-26 15:55:57
...
Nginx的alias的用法及和root的区别
http://nginx.org/en/docs/http/ngx_http_core_module.html#alias
http://nginx.org/en/docs/http/ngx_http_core_module.html#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的区别,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。
上一篇: PHP中使用FFMPEG获取视频缩略图和视频总时长实例
下一篇: cakephp实例
推荐阅读
-
python 列表,数组和矩阵sum的用法及区别介绍
-
浅析Linux中使用nohup及screen运行后台任务的示例和区别
-
nginx,apache的alias和认证功能
-
jquery遍历之parent()和parents()的区别及parentsUntil()方法详解
-
C#中的 ?/?:/?? 三者的区别及用法
-
Remoting和Webservice的详细介绍及区别
-
Linux KVM的QCOW2 和 ROW的详解及区别介绍
-
解析PHP中VC6 X86和VC9 X86的区别及 Non Thread Safe的意思
-
C#中new的用法及与override的区别分析
-
vue.js的computed,filter,get,set的用法及区别详解