服务器上找不到请求的URL XXXXX?

时间:2016-08-10 10:47:41

标签: php linux apache .htaccess codeigniter

我安装了灯服务器并尝试调用控制器功能,以便在用Codeigniter框架编写的浏览器中运行我的Web应用程序。

但在主页之后,它总是说404 page not found on the server

我检查了.htaccessroutesconfig但仍然获得了404。

它正在Windows 上的xamp服务器上正常工作。

截图:

enter image description here
htaccess的

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

在常数中

define('SURL','http://'.$_SERVER['HTTP_HOST'].'/warehouse/adminBAS/');

在配置

$config['base_url'] = SURL;
$config['index_page'] = '';
$config['uri_protocol'] = 'REQUEST_URI';


使用OS:Linux Mint 17.3

0 个答案:

没有答案