codeigniter 去除index.php (nginx,apache) 通用方法

Posted 余磊

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了codeigniter 去除index.php (nginx,apache) 通用方法相关的知识,希望对你有一定的参考价值。

.htaccess文件配置

技术分享
1 <IfModule mod_rewrite.c>
2   RewriteEngine On
3   RewriteBase /
4   RewriteCond $1 !^(index\.php|assets|system|robots\.txt)  
5   RewriteRule ^(.*)$ /index.php/$1 [L,QSA]   
6 
7 </IfModule>
技术分享

简要说明:关键是这句:rewirteCond ,assets是目录。

apache的配置:

技术分享
 1 <VirtualHost *:80>
 2     ServerAdmin [email protected]
 3     DocumentRoot "d:/mywork/m"
 4     
 5     ServerName m.mimi.com
 6     
 7     <Directory "d:/mywork/m">    // 这里是项目的目录
 8         Options Indexes MultiViews FollowSymLinks 
 9         AllowOverride All
10         Order allow,deny
11         allow from all
12    </Directory>
13 </VirtualHost>
技术分享

简要说明:

ServerAdmin表示错误信息地址,如果发生错误发送到这个邮箱地址。

Indexes 的作用就是当该目录下没有 index.html 文件时,就显示目录结构,去掉 Indexes,Apache 就不会显示该目录的列表了。

nginx配置几句

技术分享
1 location /
2         {
3             index index.php;
4             if (!-e $request_filename) {
5                     rewrite ^/(.*)$ /index.php?$1 last;
6                     break;
7             }
8         }

以上是关于codeigniter 去除index.php (nginx,apache) 通用方法的主要内容,如果未能解决你的问题,请参考以下文章

如何删除codeigniter路径中的“index.php”

从 URL 中删除 index.php (CodeIgniter)

强制从 codeigniter 中删除 index.php

Codeigniter 表单打开如何删除 index.php

无法从 codeigniter 中的 URL 中删除“Index.php”

CodeIgniter 使 .htaccess 为 index.php 返回 404