Codeigniter: won't load controller page -
i have web page made codeigniter, , works fine, when try add controller gives me a:"404 page not found" - "the page requested not found." why? controller i'm adding 1 tutorial (i'm practising):
<?php class blog extends ci_controller { public function index() { echo 'hello world!'; } } ?>
i'm using ubuntu, if makes difference.
better check out
// file name : blog.php class blog extends ci_controller(){ function blog(){ parent::__construct(); } function index(){ echo 'helloworld'; } }
- your controller filename should equal or same created class controller name.
- try put constructor before index this.
Comments
Post a Comment