Hello, I'm trying to develop an htaccess code that prevents other sites from using my content. I tried this, but without success, if I type in the browser certain file / link it becomes inactive even for me, being that it was to be for another person / site and in my site to be accessible normally.
RewriteEngine On
RewriteCond %{HTTP_REFERER} !^http://(.+\.)?meusite\.com\.br/ [NC]
RewriteCond %{HTTP_REFERER} !^$RewriteRule .*\.(jpe?g|gif|bmp|png)$ /imagens/proibido.jpg [L]
Could anyone help me?