zoukankan      html  css  js  c++  java
  • nginx 中location中root和alias的区别

    nginx指定文件路径有两种方式root和alias,这两者的用法区别,使用方法总结了下,方便大家在应用过程中,快速响应。root与alias主要区别在于nginx如何解释location后面的uri,这会使两者分别以不同的方式将请求映射到服务器文件上。

    [root]
    语法:root path
    默认值:root html
    配置段:http、server、location、if

    [alias]
    语法:alias path
    配置段:location

    root实例:

    location ^~ /t/ {
         root /www/root/html/;
    }

    如果一个请求的URI是/t/a.html时,web服务器将会返回服务器上的/www/root/html/t/a.html的文件。

    alias实例:

    location ^~ /t/ {
     alias /www/root/html/new_t/;
    }

    如果一个请求的URI是/t/a.html时,web服务器将会返回服务器上的/www/root/html/new_t/a.html的文件。注意这里是new_t,因为alias会把location后面配置的路径丢弃掉,把当前匹配到的目录指向到指定的目录。

    注意:

    1. 使用alias时,目录名后面一定要加"/"。
    3. alias在使用正则匹配时,必须捕捉要匹配的内容并在指定的内容处使用。
    4. alias只能位于location块中。(root可以不放在location中)

    我想,抬头暖阳春草,你给我简单拥抱 我想,踩碎了迷茫走过时光,睁开眼你就会听到
  • 相关阅读:
    sprint 1 的总结
    2016-11-23(第十天)
    2016-11-22(第九天)
    2016-11-20(第七天)
    2016-11-19(第六天)
    2016-11-18(第五天)
    sprint1_11.15燃尽图(第二天)
    OrderSys---Spring 计划(第一天)
    团队信息
    Scrum 4.0
  • 原文地址:https://www.cnblogs.com/selectztl/p/9474380.html
Copyright © 2011-2022 走看看