您的位置:首页 > 运维架构 > Nginx

nginx 支持 codeigniter 的path info

2016-01-11 10:02 525 查看
开发环境

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;

  }

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  nginx codeigniter