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

发布时间:2022-04-24 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了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模式访问了,如:

http://dev.example.com/app/welcome/test

脚本宝典总结

以上是脚本宝典为你收集整理的nginx支持codeigniter的pathinfo模式url重写配置写法示例全部内容,希望文章能够帮你解决nginx支持codeigniter的pathinfo模式url重写配置写法示例所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
标签:codeigniter