I have a certain directory I only want accessible from within my office. I have this working, and blocked just fine. Here is what I have in my apache conf:

<Directory /var/www/html/live/protected>
  Order deny,allow
  allow from 1.1.1.1.1.1 # My office ip
  deny from all
</Directory>

Rather than create a custom 403 page, I would rather just send these people to 404 pages. Is there a way in Apache I can have a conditional that if they are not coming from my office IP, I can just send them to the 404 page I have?

Thanks

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

Maybe this can help:

RedirectMatch 404 ".*\/\..*"

-> Is there a way to force apache to return 404 instead of 403?
-> Problem redirecting 403 Forbidden to 404 Not Found

link|improve this answer
Thanks, but I have seen both of those. I am looking to only do this conditionally, based on IP. Take a look at my sample config. I don't want to based this on just directory, rather also based on the IP. Make sense? – Du3 Oct 10 '11 at 11:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.