2

主页可以正常打开,但是当我尝试导航到我网站上的其他页面时,我收到 404 错误。但是,当我将 index.php 放入 url 时,页面确实打开了。

在我的配置文件中,我设置了$config['uri_protocol'] = "AUTO";.

4

1 回答 1

6

文件内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] 
于 2012-08-06T13:58:47.410 回答