如何在不使用codeigniter中的htaccess文件的情况下删除index.php

时间:2017-05-27 08:13:20

标签: php .htaccess codeigniter

我正在尝试删除项目网址中的index.php

我刚刚在htdocs中打开了CodeIgniter文件夹并粘贴了此代码。

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
#RewriteRule .* index.php/$0 [PT,L] 
#RewriteRule ^(.*)$ index.php/$0 [PT,L] 
RewriteRule ^(.*)$ index.php/$0 [QSA,L] 
#RewriteRule ^(.*)$ index.php?/$1 [L] 
#RewriteRule ^(.*)$ index.php/$1 [L]

1 个答案:

答案 0 :(得分:0)

根据codeigniter documentation,您必须在代码后添加 .htaccess 文件:

File