我一直在CodeIgniter中获得ERROR 404

时间:2017-07-10 22:37:52

标签: codeigniter codeigniter-3

我刚开始使用CodeIgniter,我正在研究这个例子https://www.codeigniter.com/user_guide/tutorial/static_pages.html

这是我的网址:

本地主机/笨-3.1.5 /笨 -3.1.5 / index.php的/应用/控制器/页/图/约

我认为它没有任何问题,但是当我尝试访问它时,我一直收到错误404.

1 个答案:

答案 0 :(得分:0)

你的网址错了。

如果您有正确的.htaccess,您的网址应如下所示:

localhost/CodeIgniter-3.1.5/CodeIgniter-3.1.5/Pages/view/about

没有正确的.htaccess文件:

localhost/CodeIgniter-3.1.5/CodeIgniter-3.1.5/index.php/Pages/view/about

这是一个合适的.htaccess文件:

RewriteEngine on
RewriteCond $1 !^(index\.php|resources|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L,QSA]