Im using an htaccess to load my php files, and the mvc works good but I cannot load files like images, js, css, etc..
My folder structure its the same as Laravel and my .htaccess file is:
RewriteEngine On
RewriteRule ^([^/]+)/? index.php?url=$1 [L,QSA]
If i modify the code I can load the images and some differents roots but i cannot load the /
Any help its appreciated
2
Answers
The way that I fixed my problem was replacing the code in the question for this one