Quote:
Originally posted by sexyclicks
I want to allow certain referers using .htaccess (or anything similar)
For example when the user is coming from mydomain1.com is allowed to enter but if coming from mydomain2.com is not....
Example:
Am I crazy?
|
You seem to have httpd.conf commands here not
htaccess.
If you want htaccess from a referrer, use the rewrite
conditional.
RewriteEngine On
RewriteCond %{HTTP_REFERER} !^
http://*yourdomain.com/ [NC]
RewriteRule /*
http://send.badguys.here.com/ [R,L]
... do you want the httpd.conf for doing similar?