mirror of
https://github.com/phanan/htaccess.git
synced 2018-11-08 13:39:40 +01:00
Disable Image Hotlinking for fixed domains
This commit is contained in:
parent
4d44a71d8f
commit
05ce22b9ca
1 changed files with 10 additions and 1 deletions
11
README.md
11
README.md
|
@ -30,6 +30,7 @@ What I'm doing here is mostly collecting useful snippets from all over the inter
|
|||
- [Deny Access to Backup and Source Files](#deny-access-to-backup-and-source-files)
|
||||
- [Disable Directory Browsing](#disable-directory-browsing)
|
||||
- [Disable Image Hotlinking](#disable-image-hotlinking)
|
||||
- [Disable Image Hotlinking for Fixed Domains](#disable-image-hotlinking-for-fixed-domains)
|
||||
- [Password Protect a Directory](#password-protect-a-directory)
|
||||
- [Password Protect a File or Several Files](#password-protect-a-file-or-several-files)
|
||||
- [Performance](#performance)
|
||||
|
@ -220,7 +221,15 @@ RewriteCond %{HTTP_REFERER} !^$
|
|||
RewriteCond %{HTTP_REFERER} !^http(s)?://(www\.)?yourdomain.com [NC]
|
||||
RewriteRule \.(jpg|jpeg|png|gif)$ - [NC,F,L]
|
||||
```
|
||||
If you want block 'blank' referers too - delete `RewriteCond %{HTTP_REFERER} !^$` line.
|
||||
If you want block 'blank' referers too - delete `RewriteCond %{HTTP_REFERER} !^$` line (not recommended).
|
||||
|
||||
### Disable Image Hotlinking for fixed domains
|
||||
This settings disabling image hotlinking for fixed sites only.
|
||||
``` apacheconf
|
||||
RewriteEngine on
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?badsite.com.*$
|
||||
RewriteRule \.(jpg|jpeg|png|gif)$ - [NC,F,L]
|
||||
```
|
||||
|
||||
### Password Protect a Directory
|
||||
First you need to create a `.htpasswd` file somewhere in the system:
|
||||
|
|
Loading…
Reference in a new issue