This code is working on my local Lamp(Windows) but not on the Server.
Controller:
public function home() {
$this->load->view('my_view'); // load view my_view.php
}
Route:
$route['default_controller'] = "my_controller/home"; // index page
Any ideas what else needs to be done for it to work on the server? PS: I can´t change "httpd.conf" file.