我安装了灯服务器并尝试调用控制器功能,以便在用Codeigniter框架编写的浏览器中运行我的Web应用程序。
但在主页之后,它总是说404 page not found on the server
。
我检查了.htaccess
,routes
,config
但仍然获得了404。
它正在Windows 上的xamp服务器上正常工作。
截图:
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