Here's the question:
I have a web application cake-PHP based , as you know this framework works with some mod-rewrite rule, the problem is that I activated the apache mod_info module but I can't access it because it rewrite the url. Normally I'd add another .htaccess inside the folder that I want to access disabling the Rewrite engine, but in this case I can't do it because that server-info folder doesn't really exist. How can I disable the rewrite for that folder ?
This is the .htaccess ( quite simple )
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^$ app/webroot/ [L]
RewriteRule (.*) app/webroot/$1 [L]
</IfModule>