Hi I'm having a problem with my redirection rule. Currently i redirect all page to index.php and the routes will check the correct controller.
- Everything works fine if the request is
localhost/project/home - But if if change the request to
localhost/project/home/all links are not working.
This is the folder architecture:
This what it looks like on localhost/project/home:
This is what it looks like on localhost/project/home/:
This is my .htacess:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^(.*+)$ index.php?path=$1 [QSA,L]
Thanks



localhost/project/home/means:localhost/project/home/index.php/.cssand.jsfiles, right?urlof.cssand.jsfiles!