You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by Uk1ah Sm1th <uk...@faction42.com> on 2006/02/15 16:29:16 UTC

[users@httpd] force 404 error

I want to know if it is possible to force a 404 error even when a file
or directory exist. I manage my website using svn. I pull a working copy
into my htdocs directory. This also creates .svn directorys with svn
meta data. Right now they return 403 forbiden. However I would like it
if they could return 404 not found when the directory is typed in to the
address bar. Such as: http://example.com/.svn The file is there, but I
want the user to see a 404. 

Thanks.

Ukiah


-- 
"Well done is better than well said."
             - Benjamin Franklin (1706-1790)

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] force 404 error

Posted by Joshua Slive <jo...@slive.ca>.
On 2/15/06, Uk1ah Sm1th <uk...@faction42.com> wrote:
> I want to know if it is possible to force a 404 error even when a file
> or directory exist. I manage my website using svn. I pull a working copy
> into my htdocs directory. This also creates .svn directorys with svn
> meta data. Right now they return 403 forbiden. However I would like it
> if they could return 404 not found when the directory is typed in to the
> address bar. Such as: http://example.com/.svn The file is there, but I
> want the user to see a 404.

RedirectMatch 404 \.svn
will probably work

Otherwise,
AliaseMatch \.svn /path/to/nowhere

Joshua.

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org