解析CI即CodeIgniter框架在Nginx下的重写规则

2015-01-24信息快讯网

本篇文章是对CI即CodeIgniter框架在Nginx下的重写规则进行了详细的分析介绍,需要的朋友参考下

最近研究CI框架,发现这个框架的路由功能在Nginx下有问题,报404错误,后来在网上查资料,
发现需要开启PATH_INFO。在nginx7.16以后貌似就支持PATH_INFO了,只需要在配置文件中开启即可。
打开nginx.conf文件,在你的虚拟主机下增加重写规则,代码如下:
server {

      listen      80;
       server_name   www.ci.com;
       location / {
           root  d:/www/Codeigniter_2.0.1/;
           index  index.html index.htm index.php;
       rewrite ^/$/index.php last;
       rewrite^/(?!index\.php|robots\.txt|images|js|styles)(.*)$ /index.php/$1last;
       }
    location ~^(.+\.php)(.*)$ {
      root     D:/www/Codeigniter_2.0.1/;
      fastcgi_index   index.php;
      fastcgi_split_path_info ^(.+\.php)(.*)$;
      fastcgi_param   SCRIPT_FILENAME   $document_root$fastcgi_script_name;
      fastcgi_param   PATH_INFO      $fastcgi_path_info;
      fastcgi_param   PATH_TRANSLATED   $document_root$fastcgi_path_info;
      fastcgi_pass   127.0.0.1:9002;
      include   fastcgi_params;
    }
}

php define的第二个参数使用方法
Linux编译升级php的详细方法
Php header()函数语法及使用代码
mac下安装nginx和php
php cURL和Rolling cURL并发方式比较
is_uploaded_file函数引发的不能上传文件问题
单点登录 Ucenter示例分析
php header功能的使用
web server使用php生成web页面的三种方法总结
php加密解密函数authcode的用法详细解析
PHP 使用pcntl和libevent 实现Timer功能
PHP生成Gif图片验证码
php模拟ping命令(php exec函数的使用方法)
分享下PHP register_globals 值为on与off的理解
注意:php5.4删除了session_unregister函数
PHP-Fcgi下PHP的执行时间设置方法
基于PHP CURL获取邮箱地址的详解
深入php函数file_get_contents超时处理的方法详解
php中用加号与用array_merge合并数组的区别深入分析
深入探讨:Nginx 502 Bad Gateway错误的解决方法
PHP Error与Logging函数的深入理解
基于Discuz security.inc.php代码的深入分析
ubuntu10.04配置 nginx+php-fpm模式的详解
spl_autoload_register与autoload的区别详解
基于Linux调试工具strace与gdb的常用命令总结
web站点获取用户IP的安全方法 HTTP_X_FORWARDED_FOR检验
获取用户Ip地址通用方法与常见安全隐患(HTTP_X_FORWARDED_FOR)
解析dedecms空间迁移步骤详解
PHP+jQuery实现自动补全功能源码
setcookie中Cannot modify header information-headers already sent by错误的解决方法详解
Zend的Registry机制的使用说明
php中get_headers函数的作用及用法的详细介绍
©2014-2024 dbsqp.com