博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
最完美ThinkPHP nginx 配置文件
阅读量:5743 次
发布时间:2019-06-18

本文共 1365 字,大约阅读时间需要 4 分钟。

hot3.png

网上的TP nginx配置没找到一个合适的,所以只好自己写, 就当是学习nginx了.

  • 完美支持4种url模式
  • 静态文件404不跑fastcgi浪费资源
  • 没有多于的IO浪费

,别怪我没提醒你收藏哦

server {    listen       80;    server_name  thinkphp.lo;    root /var/www;    index  index.html index.htm index.php;    error_page  404              /404.html;    location = /404.html {        return 404 'Sorry, File not Found!';    }    error_page  500 502 503 504  /50x.html;    location = /50x.html {        root   /usr/share/nginx/html; # windows用户替换这个目录    }    location / {        try_files $uri @rewrite;    }    location @rewrite {        set $static 0;        if  ($uri ~ \.(css|js|jpg|jpeg|png|gif|ico|woff|eot|svg|css\.map|min\.map)$) {            set $static 1;        }        if ($static = 0) {            rewrite ^/(.*)$ /index.php?s=/$1;        }    }    location ~ /Uploads/.*\.php$ {        deny all;    }    location ~ \.php/ {       if ($request_uri ~ ^(.+\.php)(/.+?)($|\?)) { }       fastcgi_pass 127.0.0.1:9000;       include fastcgi_params;       fastcgi_param SCRIPT_NAME     $1;       fastcgi_param PATH_INFO       $2;       fastcgi_param SCRIPT_FILENAME $document_root$1;    }    location ~ \.php$ {        fastcgi_pass 127.0.0.1:9000;        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;        include fastcgi_params;    }    location ~ /\.ht {        deny  all;    }}

转载于:https://my.oschina.net/zhuyajie/blog/523268

你可能感兴趣的文章
oracle体系结构
查看>>
J2音乐房
查看>>
Microsoft Exchange Server 2010与Office 365混合部署升级到Exchange Server 2016混合部署汇总...
查看>>
Proxy服务器配置_Squid
查看>>
开启“无线网络”,提示:请启动windows零配置wzc服务
查看>>
【SDN】Openflow协议中对LLDP算法的理解--如何判断非OF区域的存在
查看>>
纯DIV+CSS简单实现Tab选项卡左右切换效果
查看>>
栈(一)
查看>>
姑娘你大胆地往前走——答大二学生XCL之八问
查看>>
UVA196
查看>>
ios 自定义delegate(一)
查看>>
创建美国地区的appleId
查看>>
例题10-2 UVa12169 Disgruntled Judge(拓展欧几里德)
查看>>
[c语言]c语言中的内存分配[转]
查看>>
JS 原生ajax写法
查看>>
day 10 字符编码和文件处理 细节整理
查看>>
如何打造亚秒级加载的网页1——前端性能
查看>>
「陶哲軒實分析」 習題 3.5.9
查看>>
http状态码
查看>>
nsq源码学习
查看>>