Nginx的alias的用法及和root的区别
程序员文章站
2023-12-24 08:14:51
...
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教程有兴趣的朋友有所帮助。
推荐阅读
-
request(域对象)和response的区别和用法
-
PHP易混淆函数的区别及用法汇总_php技巧
-
jquery中attr和prop的区别实例用法详解
-
Java中HashMap和Hashtable及HashSet的区别
-
iOS开发中关键字const/static/extern、UIKIT_EXTERN的区别和用法
-
MYSQL 左连接右连接和内连接的详解及区别
-
Android源码中final关键字的用法及final,finally,finalize的区别
-
Java中HashMap和Hashtable及HashSet的区别
-
详解多线程及Runable 和Thread的区别
-
iOS开发中关键字const/static/extern、UIKIT_EXTERN的区别和用法