码迷,mamicode.com
首页 > Web开发 > 详细

Nginx 下Thinkphp5伪静态

时间:2019-01-05 19:58:27      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:break   rewrite   server   静态   oca   dex   nginx   color   index.php   

server {
listen 80;
server_name all.bjed.com;
root "F:\www\asdata";
location / {
index index.html index.htm index.php;
#autoindex on;
    if (!-e $request_filename) {
        rewrite  ^(.*)$  /index.php?s=/$1  last;
        break;
    }
  }

Nginx 下Thinkphp5伪静态

标签:break   rewrite   server   静态   oca   dex   nginx   color   index.php   

原文地址:https://www.cnblogs.com/supe/p/10225487.html

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