当我尝试从wamp访问网站时出现此错误,它是在codeigniter中完成的。
错误:
localhost is currently unable to handle this request. HTTP ERROR 500
家庭索引控制器
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class HomeIndex extends CI_Controller {
public function __construct(){
parent:: __construct();
$this->load->helper('html');
$this->load->helper('form','url','file');
$this->load->library('session','upload');
}
public function index()
{
//$this->load->view('coming_soon');
$this->load->view('homeIndex');
}
}
路线
$route['default_controller'] = 'HomeIndex';
$route['404_override'] = '';
$route['translate_uri_dashes'] = FALSE;
我能够访问未使用任何框架完成的其他网站。
此网站使用codeigniter完成。我无法访问该网站。
谁能告诉我这是什么问题?
答案 0 :(得分:0)
一次调用可以完成多个加载:
$this->load->helper(array('form','url','file'));
$this->load->library(array('session','upload'));
https://www.codeigniter.com/user_guide/libraries/loader.html#CI_Loader::helper
如果这不起作用,请打开错误报告(在index.php
中切换到开发模式),然后查看实际的错误是什么。 500错误可能是很多事情...