apache httpd deny
apache httpd directives can be put in either the global apache httpd config httpd.conf or in a local .htaccess file so they apply to that directory and any subdirectories.block nasty referers
# BLOCK NASTY REFERRERS SetEnvIfNoCase Referer ".*( <nastyword1>[ | ...] ).*" BadReferrer order deny,allow deny from env=BadReferrer
order allow,deny
use this for private pagesorder allow,deny allow rules & deny rules in any order ! apply allow rules apply deny rules implied deny from match both implied deny from match none
order deny,allow
use this for public pagesorder deny,allow allow rules & deny rules in any order ! apply deny rules apply allow rules implied allow from match both implied allow from match none
REFERRERS
HtAccess