http://localhost/kohana/public_html/ - to adres główny. Działa.
http://localhost/kohana/public_html/admin - to katalog dla panelu administracyjnego. Działa.
http://localhost/kohana/public_html/admin/settings - chciałem zrobić podstronę. Nie działa.
Mój routing:
'controller' => 'Home', 'action' => 'index', )); Route::set('default', '(<controller>(/<action>(/<id>)))') 'controller' => 'Home', 'action' => 'index', ));
Oczywiście posiadam kontrole (application/classes/Controller/Admin/Settings.php):
class Controller_Admin_Settings extends Controller_Template { public $template = 'backend/template'; public function action_index() { $this->template->content = View::factory('backend/settings/index'); head::set_title('Ustawienia / Panel administracyjny'); } }
Otrzymuję błąd:
Kohana_HTTP_Exception [ 404 ]: The requested URL settings was not found on this server.
Co robię źle?