找不到codeigniter页面

时间:2016-04-29 18:51:30

标签: php codeigniter url

我在Codeigniter中创建了项目。这个项目在localhost Wamp工作,但我上传的在线服务器无法正常工作

在localhost工作网址

int main(int n_of_args, char *args[]);

但在服务器上传后,此网址无法正常工作

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";

      }    } ?>

2 个答案:

答案 0 :(得分:0)

我认为http://example.com/index.php已经足够了,因为它是一个文件而且文件中没有文件夹

答案 1 :(得分:0)

如果您的家庭控制器名称以H开头(&#34; Home.php&#34;),请重命名为home.php。