I'm doing the following:
RewriteEngine On
RewriteCond %{REQUEST_URI} !^/public
RewriteRule /(.+) /public/$1
And it maps like this:
/ => index
/.+ => /public/$1
/public/.* => Doesn't map, but it should map to /public/public/$1
I don't wan't /public/ to be accessible, how can I do that?