Jump to content

block referrer URL from my domain


ge3k

Recommended Posts

I have two domain names points to an IP address
domain1.com and configured with A resource record and
domain2.com and configured with cname resource record and points to domain1.com

I want a folder on the server to only be opened with domain2.com cant be opened with domain1.com

for exmaple
I want vistors from "domain1.com/folder" see not found message.
and vistors from "domain2.com/folder" see the files in that folder.

I tried to configure .htaccess file and and put it in "/[b]folder[/b]"
[code]
<Limit GET>
order deny,allow
deny from .domain1.com
allow from .domain2.com
</Limit>
[/code]
but nothing happened.

Is there a soultion using "HTTP_REFERER".
please help?
Link to comment
Share on other sites

Yep, it's simple... You can use regular expressions to check if the HTTP_REFERER is domain1.com and if it returns true you use die() or whatever...

But as GingerRobot said, it's not a very good idea since this header is not "trustworthy"
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.