ge3k Posted April 17, 2006 Share Posted April 17, 2006 I have two domain names points to an IP address domain1.com and configured with A resource record anddomain2.com and configured with cname resource record and points to domain1.comI 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,allowdeny from .domain1.comallow from .domain2.com</Limit>[/code]but nothing happened.Is there a soultion using "HTTP_REFERER".please help? Quote Link to comment https://forums.phpfreaks.com/topic/7615-block-referrer-url-from-my-domain/ Share on other sites More sharing options...
GingerRobot Posted April 17, 2006 Share Posted April 17, 2006 There wont be a definitave solution using http referrer - some firewalls do not allow the referrer to be sent and some browers can be configured not to send them. Quote Link to comment https://forums.phpfreaks.com/topic/7615-block-referrer-url-from-my-domain/#findComment-27805 Share on other sites More sharing options...
poirot Posted April 17, 2006 Share Posted April 17, 2006 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" Quote Link to comment https://forums.phpfreaks.com/topic/7615-block-referrer-url-from-my-domain/#findComment-27906 Share on other sites More sharing options...
ge3k Posted April 18, 2006 Author Share Posted April 18, 2006 thanks gurus for help and suggetions but could you give me a simple code to apply, I'm still noob.TIA. Quote Link to comment https://forums.phpfreaks.com/topic/7615-block-referrer-url-from-my-domain/#findComment-28183 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.