This is my .htaccess file as it looks now
Code:
Options -Indexes
Options +FollowSymlinks
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http(s)?://(www\.)?mysite.com [NC]
RewriteRule \.(jpg|jpeg|png|gif|js|css|mp3)$ - [NC,F,L]
ErrorDocument 400 /errors/badrequest.html
ErrorDocument 401 /errors/authreqd.html
ErrorDocument 403 /errors/forbid.html
ErrorDocument 404 /errors/notfound.html
ErrorDocument 405 /errors/methnotallowed.html
ErrorDocument 500 /errors/serverr.html
ErrorDocument 501 /errors/methnotimp.html I've tried this without Code:
Options +FollowSymlinks
too but both failed. I've also tried limiting the number of file extensions listed and different versions from different sites.
It's probably something very simple but I don't know what i'm talking about
Bookmarks