大家都知道, 但是很多人能了解到常用的location指令的优先级别是怎么样的,这个也许知道的人就不多了吧. 先前记得有个国人说过一个nginx的“bug”(), 就是关于location配置不当造成的, 这其实并不是nginx的bug, 而是运维人员的对nginx配置location优先级别理解不很透彻造成的.
nginx官方已经指明了location指令说明:
syntax: location [ = | ~ | ~* | ^~ ] uri { ... }
location @name { ... }
default: —
context: server, location
让我们先来理解下, nginx 规则处理请求是在对路径匹配在URI规范化以后进行. 所谓规范化, 就是先将URI中形如“%XX”的编码字符进行解码, 再解析URI中的相对路径“.”和“..”部分, 另外还可能会压缩相邻的两个或多个斜线成为一个斜线:
= 开头表示精确匹配, 必须完全吻合才会执行;
^~ 开头表示uri以某个常规字符串开头,理解为匹配 url 路径即可, 如果最大前缀匹配的路径以“^~”开始,那么nginx不再检查正则表达式. nginx不对url做编码,因此请求为/assets/20%/css.css,可以被规则^~ /assets/ /css.css匹配到(注意是空格);
~ 开头表示区分大小写的正则匹配;
~* 开头表示不区分大小写的正则匹配, 与~相反是大小写同等对待的;
/ 通用匹配, 如果没有其它匹配,任何请求都会匹配到.
优先级别基本可以这么认为:
(location =) > (location 完整路径) > (location ^~ 路径) > (location ~* 正则) > (location 路径) > (/)
nginx虚拟host配置
server {
listen 80;
server_name www.xxx.my ;
root "D:/WWW/xxxx/public";
location / {
index index.html index.htm index.php;
#autoindex on;
try_files $uri $uri/ /index.php;
#去掉index.php入口文件
if (!-e $request_filename){
rewrite ^/(.*)$ /index.php/$1 last;
}
#权限认证auth
auth_basic "Restricted";#提示输入用户名密码的提示语
auth_basic_user_file htpasswd;
}
location ~ \.php(.*)$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_split_path_info ^((?U).+\.php)(/?.+)$;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
include fastcgi_params;
}
}