服务器遇到内部错误,无法完成您的请求。服务器过载或CGI脚本出错。
主页上显示上述错误,我只需下载Sample CI项目并配置为localhost(XAMPP服务器),其中包含移动的SQL转储。
但该网站不是来自localhost,我只是更改基本网址如下:
$config['base_url'] = "http://".$_SERVER['SERVER_NAME']."/myproname/";
myproname
是localhost中的项目文件夹名称。
答案 0 :(得分:0)
尝试此步骤
在application/config/config.php
中添加此
$config['base_url'] = 'http://localhost/Taxitogether/';
如果您的
Taxitogether
项目位于其他文件夹内(例如:c:/XAMPP/htdocs/kama/Taxitogether
),则baseurl应为http://localhost/kama/Taxitogether/
检查您的数据库连接和.htaccess文件
这是Codeigniter的基本设置