HTTP错误404.在codeigniter上找不到请求的资源

时间:2018-05-17 03:12:38

标签: codeigniter http-error

我知道已经有很多这方面的问题了,但是所有的答案仍然没有解决我的问题,这是我第一次使用codeigniter,而这个来自我朋友的来源我希望在我的电脑上运行它。

我的应用程序具有类似

的结构

enter image description here

并在index.php中

enter image description here

因此,当我尝试访问第一个项目时,它将指向

enter image description here

当我尝试访问该链接时,它会给我这个

enter image description here

在config penjadwalan_genetik / config.php

enter image description here

和/ penjadwalan_genetik / htaccess的htaccess

enter image description here

首先htaccess不是那样的,在我更改htaccess之前 "拒绝所有"我改变了那张照片

我使用localhost:8000在xampp中运行,我已经尝试将base_url更改为localhost:8000,但结果是找不到对象。

1 个答案:

答案 0 :(得分:0)

打开记事本并粘贴此代码 并将其另存为.htaccess文件 然后将其粘贴到项目目录

DirectoryIndex index.php
RewriteEngine on

RewriteCond $1 !^(index\.php|(.*)\.swf|forums|images|css|downloads|jquery|js|robots\.txt|favicon\.ico)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ ./index.php?$1 [L,QSA]