设置 nginx 支持 thinkPHP 的 pathinfo 模式

参见 http://down.chinaz.com/server/201108/934_1.htm

在 nginx 下面用 ThinkPHP 做开发,每次输入 类似 /test/tp/index.php/Index/index 的 URI , 提示没有找到该页

在网上搜了一下,原来 nginx 原来不支持 pathinfo 模式,需要自己配置

在配置文件的 server 块中,加入以下内容

		# ThinkPHP 的 pathinfo 支持 -------------- BEGIN
		location /test/tp/ {
			index index.php;
			if (!-e $request_filename) {
				rewrite ^/test/tp/(.*)$ /test/tp/index.php/$1 last;
				break;
			}
		}
		location ~ .+\.php($|/) {
			set $script $uri;
			set $path_info "/";
			if ($uri ~ "^(.+\.php)(/.+)") {
				set $script		$1;
				set $path_info	$2;
			}
			
			fastcgi_pass 127.0.0.1:9000;
			fastcgi_index index.php?IF_REWRITE=1;
			include fastcgi_params;
			fastcgi_param PATH_INFO $path_info;
			fastcgi_param SCRIPT_FILENAME $document_root/$script;
			fastcgi_param SCRIPT_NAME $script;
		}
		# ThinkPHP 的 pathinfo 支持 -------------- END

其中 /test/tp/ 是我项目的路径

保存配置之后,重启 nginx ,配置成功

直接支持类似于 /Index.html 这样的伪静态模式

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值