limiting diretory/file content?
am 26.11.2009 05:39:01 von Zach Uram
I wish to use Apache 2.2 to limit where users may go. I wish to avert
the so-called "fishing" where a user sees:
(note that I will be using name based virtual hosts to host multiple
domains on the same physical server/same ip)
http://www.site.org/whatever/something.html and tries to access
http://www.site.org/whatever/
I would like it on a directory basis, a file basis may be needed later
but not for now.
How may I achieve this? A sample config info would be appreciated
since I never did this before :)
If a user tries to access a forbidden directory I wish to display a
custom message to them like "Stop that!" or something so also how may
I do that?
Thanks and Happy Thanksgiving!
Zach
------------------------------------------------------------ ---------
The official User-To-User support forum of the Apache HTTP Server Project.
See 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: limiting diretory/file content?
am 26.11.2009 07:29:02 von imedina
--8323329-334186213-1259216949=:2711
Content-Type: TEXT/PLAIN; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8BIT
> http://www.site.org/whatever/something.html and tries to access
> http://www.site.org/whatever/
>
> I would like it on a directory basis, a file basis may be needed later
> but not for now.
Which rule would you set to disable access? Rule based on IP for instance?
> If a user tries to access a forbidden directory I wish to display a
> custom message to them like "Stop that!" or something so also how may I
> do that?
You can do that by .htaccess combining rule for no access and customized
page for message.
iñ
--8323329-334186213-1259216949=:2711
Content-Type: text/plain; charset=us-ascii
------------------------------------------------------------ ---------
The official User-To-User support forum of the Apache HTTP Server Project.
See 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
--8323329-334186213-1259216949=:2711--
Re: limiting diretory/file content?
am 26.11.2009 10:48:59 von aw
Zachary Uram wrote:
> I wish to use Apache 2.2 to limit where users may go. I wish to avert
> the so-called "fishing" where a user sees:
>
> (note that I will be using name based virtual hosts to host multiple
> domains on the same physical server/same ip)
>
> http://www.site.org/whatever/something.html and tries to access
> http://www.site.org/whatever/
>
> I would like it on a directory basis, a file basis may be needed later
> but not for now.
>
> How may I achieve this? A sample config info would be appreciated
> since I never did this before :)
>
> If a user tries to access a forbidden directory I wish to display a
> custom message to them like "Stop that!" or something so also how may
> I do that?
>
the easiest way :
http://httpd.apache.org/docs/2.2/mod/mod_dir.html#directoryi ndex
set a global DirectoryIndex to the error page you want, and override it
in sections where you want something else.
------------------------------------------------------------ ---------
The official User-To-User support forum of the Apache HTTP Server Project.
See 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