I'm using mod_rewrite, right now and i'm using this
RewriteRule ^.+(css/.+)$ $1 [L]
RewriteRule ^.+(js/.+)$ $1 [L]
RewriteRule ^.+(img/.+)$ $1 [L]
RewriteRule ^.+(fonts/.+)$ $1 [L]
RewriteRule ^.+(swf/.+)$ $1 [L]
Now i just write css/cssfile.css and js img and stuff and it works (even if i dont think this is the right way)
But anyways, i have a folder named functions with some PHP file, and i tried to make the same with that that i maked with this.. But that didnt go to great, the reason i want this is i want to make one file with includes, so i avoid, making several rows of code unnecessarily.
Does anyone knows what im talking about and maybe have a clue what i should do?
I'm sorry for bad explination (new to mod_rewrite) and i tried to search with out any good response..