faqts : Computers : Internet : Web Servers : Apache

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

8 of 11 people (73%) answered Yes
Recently 8 of 10 people (80%) answered Yes

Entry

How can I deny service by reference ? (block users who clicked on a link from a specific site ?)

Dec 6th, 2001 05:03
Brian Jones, Yaniv Berliner,


In the httpd.conf file you can set the DENY option for specific sites.

For example:

#
# Controls who can get stuff from this server.
#
    Order allow,deny
    Allow from all
    Deny from microsoft.com
</Directory>