9 lines
226 B
PHP
9 lines
226 B
PHP
|
<?php
|
||
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
||
|
|
||
|
$route['forms'] = 'Form_controller/index';
|
||
|
|
||
|
$route['default_controller'] = 'welcome';
|
||
|
$route['404_override'] = '';
|
||
|
$route['translate_uri_dashes'] = FALSE;
|