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

nginx与location规则

时间:2020-07-16 10:13:30      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:var   xxx   efault   请求   php   index   反向代理   thinkphp   cal   

=========================================================================
2018年3月28日 记录:

location = /uri    =开头表示精确匹配,只有完全匹配上才能生效。
location ^~ /uri   ^~ 开头对URL路径进行前缀匹配,并且在正则之前。
location ~ pattern  ~开头表示区分大小写的正则匹配。
location ~* pattern  ~*开头表示不区分大小写的正则匹配。
location /uri     不带任何修饰符,也表示前缀匹配,但是在正则匹配之后。
location /      通用匹配,任何未匹配到其它location的请求都会匹配到,相当于switch中的default。

==================================================================================================
2016年8月30日 记录:

linux /var/run/*.pid 文件的作用是记录进程的id号
linux下nginx采用epoll的网络I/O模型

location =/ 精确匹配
location / 匹配所有请求
location /xxx/ 匹配/xxx/的请求
location ~ 匹配后面正则表达式,区分大小写
location ~* 匹配后面正则表达式,不区分大小写
location ^~ 匹配普通字符并终止

在location /里面
nginx去除index.php重写 rewrite ‘^/(.*?)$‘ /index.php/$1;

nginx反向代理,必须在location /{}里面 proxy_pass http://localhost:5050; proxy_set_header 传递http头

thinkphp nginx
fastcgi_split_path_info ^(.+.php)(/.*)$;
fastcgi_param PATH_INFO $fastcgi_path_info;

nginx与location规则

标签:var   xxx   efault   请求   php   index   反向代理   thinkphp   cal   

原文地址:https://www.cnblogs.com/haima/p/13320677.html

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