zoukankan      html  css  js  c++  java
  • nginx 的location的匹配顺序

    匹配规则

    匹配顺序

    示例

    [root@python vhast]# cat test.conf 
    server {
            server_name haha.com;
            #listen 8080;
    	rewrite_log on;
            error_page 404 /403.html;
            #return 405;
            location /{
                    #return 404 "find nothing!
    ";
            }
    	root html/;
    	location /first {
    		rewrite /first(.*) /second$1 last;
    		return 200 1first!
    ';
    		}
    	location /second {
    		#rewrite /second(.*) /third$1 break;
    		rewrite /second(.*) /third$1 last;
    		return 200 'second!
    ';
    		}
    	location /third {
    		return 200 'third!
    ';
    	}
    	location /redirect1 {
    		rewrite /redirect1(.*) $1 permanent;
    	}
    	location /redirect2 {
    		rewrite /redirect2(.*) $1 redirect;
    	}
    	location /redirect3 {
    		rewrite /redirect3(.*) http://haha.com:$1;
    	}
    	location /redirect4 {
    		rewrite /redirect4(.*) http://haha.com:$1 permanent;
    	}
    	location ~ /Test1/$ {
    		return 200 'first regular expressions match! 
    ';
    	}
    	location ~* /Test1/(w+)$ {
    		return 200 'longest regular expressions match! 
    ';
    	}
    	location ^~ /Test1/ {#禁止正则匹配
    		return 200 'stop regular expressions match! 
    ';
    	}
    	location /Test1/Test2 {
    		return 200 'longest prefix string match! 
    ';
    	}
    	location /Test1 {
    		return 200 'prefix string match! 
    ';
    	}		
    	location = /Test1 {  #精确匹配
    	return 200 'exact match!
    ';
    	}	
    }
    

      测试

    [root@python vhast]# curl http://haha.com/Test1
    exact match!
    [root@python vhast]# curl http://haha.com/Test1/
    stop regular expressions match! 
    [root@python vhast]# curl http://haha.com/Test1/Test2
    longest regular expressions match! 
    [root@python vhast]# curl http://haha.com/Test1/Test2/
    longest prefix string match! 
    [root@python vhast]# curl http://haha.com/test1/Test2  #没有匹的话会记住匹配最长的那个
    longest regular expressions match! 
    

      

    草都可以从石头缝隙中长出来更可况你呢
  • 相关阅读:
    C++ Builder编写WinForm Post数据至Web服务器并得到返回数据
    东方网点网吧电影下载url
    自己写的常用jquery扩展函数
    给IT新人的15点建议:苦逼程序员的辛酸反省与总结
    hdu 2152 Fruit (母函数)
    母函数
    hdu 1709 The Balance (母函数)
    hdu 1171 Big Event in HDU (母函数)
    hdu 1085 Holding BinLaden Captive! (母函数)
    hdu 1398 Square Coins (母函数)
  • 原文地址:https://www.cnblogs.com/rdchenxi/p/11153194.html
Copyright © 2011-2022 走看看