欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  网络运营

nginx支持codeigniter的pathinfo模式url重写配置写法示例

程序员文章站 2023-11-25 22:27:04
开发环境 codeigniter 2.14 php 5.4.18 nginx 1.4.2 codeigniter配置 打开 codeignite 的 config...

开发环境

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模式访问了,如: