Codeigniter网站为每个链接提供404页面

时间:2014-10-24 07:31:55

标签: codeigniter

我已在我的服务器中使用子文件夹设置codeigniter网站。

我也在config.But中更改了配置网址,当我点击网站中的任何链接时,都会出现404页面错误。

这是网站链接192.185.167.23/~admirals /.

仅供参考我的.htaccess文件为空。

我应该怎样做才能使链接工作。

1 个答案:

答案 0 :(得分:0)

尝试将其放入.htaccess文件中:

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php/$0 [PT,L]

config.php文件中:

$config['index_page'] = ""

您还必须确保在apache配置中激活了rewrite模块。