nginx支持codeigniter的pathinfo模式url重写配置写法示例
开发环境
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模式访问了,如:
相关推荐
  klarclm    2020-06-14  
   carolAnn    2020-05-09  
   JF0    2020-03-02  
   hithyc    2020-01-18  
   suixinsuoyu    2020-01-18  
   amberom    2020-01-06  
   xcguoyu    2019-12-25  
   wmsjlihuan    2019-04-14  
   whoisyoya    2018-01-14  
   rinkback00    2017-08-10  
   刘阳龙Herman    2019-03-28  
   ginkgodia    2013-05-30  
   misszc    2009-04-19  
   nellson    2019-07-01  
   怕什么真理无穷    2019-07-01  
   Allchin    2015-05-27  
   haoxun0    2011-12-21  
   shishaoe    2015-02-10  
   静心斋    2015-02-10  
 