为什么 nginx 的精准匹配不上

2018-11-18 21:18:41 +08:00
 1156909789
location = / {
    	root   "/www/wwwroot/website";
        index  index.html;
    }
    
    
    
	location / {
		index  index.html index.htm index.php;  
  		if (!-e $request_filename) {
   			rewrite  ^(.*)$  /index.php?s=/$1  last;
   			break;
    	}
 	}

规则大概是这样。然后输入 http://domain/ 竟然匹配到了 location / (我有在 location / 中 return 507 发现的) 为什么会这样?谢谢

1592 次点击
所在节点    问与答
1 条回复
1156909789
2018-11-18 21:29:47 +08:00

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/509037

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX