博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
配置nginx1.8支持thinkPHP3.2 pathinfo模式
阅读量:5327 次
发布时间:2019-06-14

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

  nginx 下conf/nginx.conf 或者自己的vhosts

更改以前的参数

location / {

            root   html;

            index  index.html index.htm index.php;

            try_files  $uri  /index.php$uri;

            if (!-e $request_filename) {

                   rewrite ^/子目录名/(.*)$ /子目录名/index.php?s=$1 last; #去除index.php

                   break;

              }

        }

 

location ~ .+\.php($|/) {

            root           html;

            fastcgi_pass   127.0.0.1:9000;

            fastcgi_index  index.php;

            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;

            fastcgi_split_path_info  ^(.+\.php)(/.*)$;

            fastcgi_param  PATH_INFO $fastcgi_path_info;

            include        fastcgi_params;

        }

转载于:https://www.cnblogs.com/already/p/5155280.html

你可能感兴趣的文章
Android ContentProvider的实现
查看>>
sqlserver 各种判断是否存在(表名、函数、存储过程等)
查看>>
给C#学习者的建议 - CLR Via C# 读后感
查看>>
Recover Binary Search Tree
查看>>
Java 实践:生产者与消费者
查看>>
[转]IOCP--Socket IO模型终结篇
查看>>
js 获取视频的第一帧
查看>>
各种正则验证
查看>>
观察者模式(Observer)
查看>>
python中numpy.r_和numpy.c_
查看>>
egret3D与2D混合开发,画布尺寸不一致的问题
查看>>
freebsd 实现 tab 命令 补全 命令 提示
查看>>
struts1和struts2的区别
查看>>
函数之匿名函数
查看>>
shell习题第16题:查用户
查看>>
Redis常用命令
查看>>
2018.11.06 bzoj1040: [ZJOI2008]骑士(树形dp)
查看>>
2019.02.15 bzoj5210: 最大连通子块和(链分治+ddp)
查看>>
redis cluster 集群资料
查看>>
微软职位内部推荐-Sr. SE - Office incubation
查看>>