Is it possible to check who is entering your website in PhP. I have a web application ( written in PhP) that should only allow users entering from some particular websites. Is it possible to get the referral websites by examining the _Request object? If yes, how?
|
1
|
|||
|
|
|
Yes, but keep in mind some proxies and other things strip this information out. Use
If you want to only allow requests from a specific domain you'll need to parse some of the URL to get the top level domain. As I've learnt more, this can be done with PHP's parse_url(). As andyk points out in the comments, you will also have to allow for www.example.com and example.com. |
||||||||||||
|
|
|
You need to examine the $_SERVER array for the 'HTTP_REFERER' key. |
||
|
|
|
|
While you can look at If it's critical that only people coming from specific referrers view your site, don't use this method. You'll have to find another way, like basic auth, to protect your content. I'm not saying that you shouldn't use this technique, just keep in mind that it's not fool-proof. BTW, you can also block referrers at the apache level using mod_rewrite. |
||
|
|
|
|
Your should first check if there is a referrer. Then you can parse the referrer using
|
||
|
|
|
|
You cannot trust the referrer. Despite coming from the |
||
|
|
