为什么我的网址在首页上显示index.php但在链接中没有? 我试图重写htaccess但失败了。 我真的觉得这很容易让我失踪。
答案 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>
这项服务在我的服务器上运行正常....