View Full Version : .htaccess


DTT
02-23-2003, 01:11 AM
Is there a reason that when I have my .htaccess file uploaded none of my pictures work on my site - http://opk.twilight-eclipse.net ? Alot of my pages don't work, so I'm not worried about that, only the .htaccess v.v

epolady
02-23-2003, 01:46 AM
What does your .htaccess look like?

DTT
02-23-2003, 02:20 AM
.htaccess:

ErrorDocument 404 http://opk.twilight-eclipse.net/error.shtml
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://opk.yourdomain.com/.*$ [NC]
RewriteRule \.(gif|jpg)$ http://opk.twilight-eclipse.net/bandwidth.gif [R,L]

epolady
02-23-2003, 02:58 AM
You didn't fill in

RewriteCond %{HTTP_REFERER} !^http://opk.yourdomain.com/.*$ [NC]

DTT
02-23-2003, 02:50 PM
omg, didn't notice that. >.< Thanx! -.-'
Still doesn't work. Maybe it's just a server fault.

epolady
02-23-2003, 08:31 PM
Well you could try it again, here's what mine looks like:

RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://mydomain.net/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://www.mydomain.net/.*$ [NC]
RewriteRule .*\.(gif|GIF|jpg|JPG)$ - [F]