在codeigniter中获取错误:尝试使用ErrorDocument处理请求时遇到404 Not Found错误

时间:2016-08-26 08:18:31

标签: php codeigniter

早些时候我的菜单工作正常,突然间它开始出错了

  

未找到在此服务器上找不到请求的URL /allbound/index.php。   此外,尝试使用ErrorDocument处理请求时遇到404 Not Found错误。

如何解决此问题?

2 个答案:

答案 0 :(得分:0)

//在函数名称

之前添加index.php

dograpublicschool.com/confluent/travelling/index.php/flights d

从url

中删除index.php

CodeIgniter removing index.php from url

答案 1 :(得分:0)

您必须编辑访问网址。

在这种情况下,请访问此http://dograpublicschool.com/?ndex.php/confluent/travelling/flightsd之类的网址。它正在与我合作。

删除codeigniter中的index.php

您可以通过修改.htaccess来删除index.php,如下所示

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

希望有所帮助。感谢