Skip to content

Instantly share code, notes, and snippets.

@gatespace
Created June 29, 2012 04:51
Show Gist options
  • Save gatespace/3015856 to your computer and use it in GitHub Desktop.
Save gatespace/3015856 to your computer and use it in GitHub Desktop.
画像のリファラを取得して直接アクセスした場合は403にする.htaccess
# 出典 http://ja.forums.wordpress.org/topic/8980
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^http(s)?://(www\.)?example.com [NC]
RewriteRule \.(jpg|jpeg|png|gif)$ - [NC,F,L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment