用户名:
密 码: 记住
您当前的位置:首页 > 站长百科 > 服务器技术

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

时间:2015-01-18  来源:互联网  作者:佚名

开发环境

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

来顶一下
返回首页
返回首页
推荐资讯
【图文教程】dede织梦网站后台如何发表文章? 【图文教程】dede织梦网站后台如何对于新手站长可能不了解,dede织梦后台是如何发文章的。下面
2014站长圈十大事件:PR已死 移动算法兴起 2014站长圈十大事件:PR已死 移动算2014年即将过去,虽然站长圈相比过去几年稍显沉寂,但&ldquo
相关文章
    无相关信息
栏目更新
栏目热门