时间:2021-05-19
开发环境
codeigniter 2.14
PHP 5.4.18
nginx 1.4.2
Codeigniter配置
打开 codeignite 的 config.php 文件修改如下:
$config['uri_protocol'] = "PATH_INFO";nginx配置
打开 nginx 的配置文件 nginx.conf 文件,修改如下:
# 我使用的是虚拟主机配置server { listen 80; server_name dev.example.com; rewrite_log on; root /www/web/htdocs/dev.example.com; index index.php index.html index.htm; location / { index index.php index.html index.htm; } location ~ \.php($|/) { fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_split_path_info ^(.+\.php)(.*)$; fastcgi_param PATH_INFO $fastcgi_path_info; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } if (!-e $request_filename) { rewrite ^/(.*)$ /index.php/$1 last; break; } location ~ /\.ht { deny all; }}现在就可以用pathinfo模式访问了,如:
http://dev.example.com/app/welcome/test
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
最近一个项目中使用了ThinkPHP做为开发框架,URL上我们使用了PATHINFO模式,但是Nginx默认是不支持PATHINFO的,需要进行手动配置才可以,
nginx服务器默认是不支持pathinfo模式的,即类似index.php/index形式的url会提示404。在这里,需要对nginx配置文件中需要开启pa
nginx模式不支持pathinfo模式,类似info.php/hello形式的url会被提示找不到页面。下面的通过正则找出实际文件路径和pathinfo部分的
最近我把Apache给换成nginx,当我把tp项目搬过去运行的时候发现404错误,原来是因为nginx不支持pathinfo模式,需要自己配置下面我配置在se
本文针对ThinkPHP中pathinfo的两种模式、四种路径访问模式和URL重写相关知识进行了总结归纳,分享给大家便于查询和借鉴。具体归纳如下:1、pathi