[eluser]Ngulo[/eluser]
Hi all, i'm using HMVC lib.
I'm still having problems on uri routing.
i need to route from :
mysite.com/home/index/123/ffdfd/etc ..
to:
mysite.com/home/123/ffdf/etc..
so i putted in routes.php this piece of code:
$route['home/index/(:any)'] = "home/(:any)";
but i'm still rhaving 404 page error.
does anyone knows about? could be HMVC a problem for that?
also still having troubles removing index.php from urls .
i use localhost/SITE/index.php/home
i removed config 'index.php' and putted .htaccess rules:
Code:
RewriteEngine On
RewriteBase /SITE/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /SITE/index.php/$1 [L]
but apache still tells me 404 page not found ... really strange.
thanks guys who will help me