主页正常打开,但当我尝试导航到我网站上的其他网页时,我收到404错误。但是,当我将index.php放入网址 正确打开时。
在我的配置文件中,我设置了$config['uri_protocol'] = "AUTO";
。
答案 0 :(得分:5)
在config.php
文件中:
更改
$config['index_page'] = "index.php";
致:
$config['index_page'] = "";
并在根目录中创建一个.htacces
文件,其中包含:
RewriteEngine On
RewriteBase /
RewriteCond $1 !^(index\.php|assets|fav\.ico|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?$1 [L]