博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
thinkphp5.0 - nginx 配置
阅读量:4949 次
发布时间:2019-06-11

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

上面介绍的是 thinkphp url 的访问方式,按照上面的访问方式配置nginx服务器配置,如下所示:

server {        listen 8090;        server_name localhost 172.26.62.185;        root /Users/staff/Documents/study/tp5;(注:这里是 thinkphp 的根目录,所以访问地址是:http://localhost:8090/public/index.php/index/index/index)       (如果这里的root /Users/staff/Documents/study/tp5/public; 那么访问地址http://localhost:8090/index.php/index/index/index)        index index.php;        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;        }    }

参考:

 

http://www.thinkphp.cn/topic/34380.html

转载于:https://www.cnblogs.com/ZhYQ-Note/p/8532643.html

你可能感兴趣的文章
SDK提交到CocoaPods
查看>>
C#生成随机数
查看>>
Flask-jinja2
查看>>
【BZOJ3224】Tyvj 1728 普通平衡树 Splay
查看>>
java8 四大核心函数式接口Function、Consumer、Supplier、Predicate
查看>>
iOS 图片加载速度极限优化—FastImageCache解析
查看>>
类的声明和使用
查看>>
bzoj3196: Tyvj 1730 二逼平衡树
查看>>
CSS基础学习 20.CSS媒体查询
查看>>
软件测试分类
查看>>
Eureka
查看>>
H5 页面调试小帮手-UC 开发者工具
查看>>
Unicode与UTF-8互转(C语言实现)【转】
查看>>
怎么快速对DB里的所有email进行校验
查看>>
SQL日期比较
查看>>
JavaScript全面学习(node.js)
查看>>
I/O模式总结
查看>>
2019春季第十一周作业
查看>>
洛谷P4591 [TJOI2018]碱基序列 【KMP + dp】
查看>>
iOS CoreData介绍和使用(以及一些注意事项)
查看>>