我是靠谱客的博主 年轻小蝴蝶,这篇文章主要介绍nginx支持codeigniter的pathinfo模式url重写配置写法示例,现在分享给大家,希望可以做个参考。

开发环境

codeigniter 2.14
PHP 5.4.18
nginx 1.4.2

Codeigniter配置

打开 codeignite 的 config.php 文件修改如下:

复制代码
1
$config['uri_protocol'] = "PATH_INFO";

nginx配置

打开 nginx 的配置文件 nginx.conf 文件,修改如下:

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# 我使用的是虚拟主机配置 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内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(169)

评论列表共有 0 条评论

立即
投稿
返回
顶部