码迷,mamicode.com
首页 > 其他好文 > 详细

nginx 精准匹配

时间:2015-06-02 15:30:00      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:nginx

精准匹配优先级最高

    server {

        listen       80;

        server_name  localhost;

        location / {

            root   html;              #相对路径,也就是nginx的安装路径

            index  index.html index.htm;

        }

        location = / {

             root /usr/local/w/;

             index index.html;

        }

这个如果在浏览器里访问http://127.0.0.1/的话仍然会匹配到/usr/local/w/,匹配到这个目录后因为是精确匹配只对当前目录生效,就不再往下匹配,然后跳到默认的/匹配,匹配到/usr/local/nginx/html/index.html

 技术分享该图片我是将/usr/local/w/index.html更改为index.htm,而index.htm在/usr/local/nginx/html里面是没有的,所以出现上图的faild,更改过来后,signal process started。所以一般的精确匹配是不直接用= /目录,而是=/主页

 server {

        listen       80;

        server_name  localhost;

        location / {

            root   html;              #相对路径,也就是nginx的安装路径

            index  index.html index.htm;

        }

        location = /index.html{

             root /usr/local/w/;

             index index.html;

        }


这样就能实现访问/usr/local/w/index.html了

nginx 精准匹配

标签:nginx

原文地址:http://linuxnewstar.blog.51cto.com/6967359/1657447

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!