博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Nginx 开启PATHINFO支持ThinkPHP框架实例
阅读量:6532 次
发布时间:2019-06-24

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

ThinkPHP支持通过PATHINFO和URL rewrite的方式来提供友好的URL,只需要在配置文件中设置 'URL_MODEL' => 2 即可。在Apache下只需要开启mod_rewrite模块就可以正常访问了,但是Nginx中默认是不支持PATHINFO的,所以nginx默认情况下是不支持ThinkPHP的。不过我们可以通过修改nginx的配置文件来让其支持ThinkPHP。

虚拟主机配置文件:  nginx/conf/vhost/127.0.0.1_8090.conf

server {	listen			8040;	server_name		127.0.0.1:8040;	access_log		logs/127.0.0.1_8040.access.log  main;    location / {        		root          /www/jingchang/jc_live;		if (!-e $request_filename) {		    rewrite  ^/(.*)$  /index.php/$1  last;		            break;		    }	}	 	location ~ \.php {        root         /www/jingchang/jc_live;		fastcgi_pass 127.0.0.1:9000;		fastcgi_index index.php;		include fastcgi.conf;		set $real_script_name $fastcgi_script_name;		if ($fastcgi_script_name ~ "^(.+?\.php)(/.+)$") {		    set $real_script_name $1;		    set $path_info $2;		}		fastcgi_param SCRIPT_FILENAME $document_root$real_script_name;		fastcgi_param SCRIPT_NAME $real_script_name;		fastcgi_param PATH_INFO $path_info;	}	}

转载地址:http://ilqbo.baihongyu.com/

你可能感兴趣的文章
把某一列值转换为逗号分隔字符串
查看>>
DLL,DML,DCL,TCL in Oracle
查看>>
iOS中--NSArray调用方法详解 (李洪强)
查看>>
java异步操作实例
查看>>
Centos6.8防火墙配置
查看>>
[精讲17] 组策略
查看>>
如何在Rancher上运行Elasticsearch
查看>>
shell 找出数组元素中的最大值
查看>>
Vmware虚拟机linux系统混合模式上网
查看>>
MySQL在导入的时候遇到的错误
查看>>
LINUX 常用命令整理
查看>>
德国禁止Facebook利用WhatsApp用户信息:没法律基础
查看>>
全球太阳能产业掣肘在哪儿?
查看>>
“灾备全生态”全揭秘
查看>>
CSS盒子模型
查看>>
Zeppelin Prefix not found.
查看>>
ubuntu中eclipse安装svn插件问题
查看>>
linux 的网络设置
查看>>
首届“欧亚杯”象翻棋全国团体邀请赛圆满收评!
查看>>
编译tomcat
查看>>