codeigniter中的url有时会显示index.php文件,有时则不会

时间:2014-01-06 08:24:00

标签: codeigniter url

为什么我的网址在首页上显示index.php但在链接中没有? 我试图重写htaccess但失败了。 我真的觉得这很容易让我失踪。

1 个答案:

答案 0 :(得分:0)

使用pefect .htaccess重写url:

在config.php中更改

$config['index_page']='';

然后使用根文件夹中的.htaccess:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /

RewriteCond %{REQUEST_URI} ^sys.*
RewriteRule ^(.*)$ /index.php?/$1 [L]

RewriteCond %{REQUEST_URI} ^app.*
RewriteRule ^(.*)$ /index.php?/$1 [L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>
<IfModule !mod_rewrite.c>
    ErrorDocument 404 /index.php
</IfModule>

这项服务在我的服务器上运行正常....