Tell me more ×
Server Fault is a question and answer site for professional system and network administrators. It's 100% free, no registration required.

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>
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.