4

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?

buggie
  • 63
  • 5
  • 1
    You should see this subject, it can help you a lot : http://stackoverflow.com/questions/13079666/developing-a-tracking-pixel – Bobot Apr 24 '15 at 11:26

1 Answers1

1

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
Community
  • 1
  • 1
enigma
  • 3,476
  • 2
  • 17
  • 30