find, hmvc , HMVC. , hmvc, , , . script hmvc , , .
$route['default_controller'] = "folder/file/index";
$route['404_override'] = '';
$route['some_controller_name_a'] = "folder/file/index";
$route['some_controller_name_b'] = "folder/file/yourfunction";
$route['default_controller'] = "install/common/step_1/index";
$route['404_override'] = '';
$route['step_1'] = "install/common/step_1/index";
$route['step_2'] = "install/common/step_2/index";
$route['step_3'] = "install/common/step_3/index";
$route['step_4'] = "install/common/step_4/index";
redirect ('some_controller_name_a');
Options +FollowSymLinks
Options -Indexes
DirectoryIndex index.php
RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]
index.php
Also on the viewer download controller
<?php echo Modules::run('install/common/header/index');?>
user3300065
source
share