Skip to content

Instantly share code, notes, and snippets.

@evemilano
Created December 17, 2014 22:39
Show Gist options
  • Select an option

  • Save evemilano/efbb15107fb1b36602f2 to your computer and use it in GitHub Desktop.

Select an option

Save evemilano/efbb15107fb1b36602f2 to your computer and use it in GitHub Desktop.
Stop Hotlinking
RewriteEngine on
# Stop hotlinking.
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} ^https?://([^/]+)/ [NC]
RewriteCond %1#%{HTTP_HOST} !^(.+)#\1$
RewriteRule \.(jpg|jpeg|png|gif|swf|svg)$ - [NC,F,L]
@evemilano
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment