is there a possibility of tracking URLs that display images directly from my web server?
for eg. somebody copy URL link of image from my website and display it on his. Can i somehow get his site URL?
is there a possibility of tracking URLs that display images directly from my web server?
for eg. somebody copy URL link of image from my website and display it on his. Can i somehow get his site URL?
You can check the apache logs - see this question for finding them. access.log
would be appropriate in this case. The referer column is probably the one you're looking for, see here for more about apache logs.
If you only want to allow the images to be displayed on your website, open up a root .htacess
file, and enter the following:
Order Deny,Allow
Deny from all
Allow from example.com