【发布时间】:2016-08-25 00:58:53
【问题描述】:
我在 Codeigniter 中创建了项目。该项目在 localhost Wamp 中运行,但我上传的在线服务器无法正常工作
在本地主机工作网址中
http://localhost/newjob/index.php/home
但是上传到服务器后这个网址不起作用
http://example.com/index.php/home
和
http://example.com/
控制器
<?php class Home extends Controller {
public function index() {
echo "home page";
} } ?>
配置
$config['base_url'] = 'http://example.com/';
【问题讨论】:
-
你的
.htaccess文件? -
codeIgniter 中控制器或模型的末尾不需要
?>确保所有文件名的首字母大写 示例stackoverflow.com/questions/34025305/… -
class Home extends Controller是错误的。使用class Home extends CI_Controller。 -
哪个 CodeIgniter 版本?
标签: php codeigniter url