<?php
return array(
'_root_' => 'welcome/index', // The default route
'_404_' => 'welcome/404', // The main 404 route
'hello(/:name)?' => array('welcome/hello', 'name' => 'hello'),
'admin' => 'admin/dashboard',
);
/* Set this to false or remove if you using mod_rewrite. */ 'index_file' => 'index.php',to
'index_file' => '',
RewriteBase /
<IfModule mod_rewrite.c>
RewriteEngine on
# ADDED TO MAKE index.php REMOVAL FUNCTION
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
Hope this helps. 'admin' => 'admin/dashboard/' ,
www
fuel
App
Core
Packages
Example
index.php
What should I do from there? It looks like you're new here. If you want to get involved, click one of these buttons!