Everything I find seems to be about created a custom 404 page.

That is not what I am trying to do.

If I want to block access to a page I can do this in htaccess:

RewriteRule pattern - [F]

However, "Forbidden" hints that the page does exists. I want the page to appear to not even exist. So I would like to give a 404 error instead of a 403. Then have it render whatever 404 page would render if the resource really wasn't there.

How can I do that?

link|improve this question

70% accept rate
feedback

2 Answers

The documentation and AskApache suggest that you can simply use Redirect 404.

link|improve this answer
feedback

...what about actually removing it (or renaming it, or moving it away...)?

What's the point anyway of having it there if you want to make it not accessible at all?

link|improve this answer
I want it accessible to one domain and not another. I have more than one domain pointing to the same server. Most of the pages slightly adjust based on domain (logo, description, etc.) Some resources should appear to only be on 1 domain though. – John Isaacks May 19 '11 at 20:28
feedback

Your Answer

 
or
required, but never shown

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