Forum Moderators: open
People that have Norton Personal Firewall on their computers have contacted me and said they cant see images..If they go into options in NPF and change "Information about visited sites" from blocked to permit all images show.
Can anyone tell me why my website, or what is in coding to stop images showing..
Thank you any one for your assistance.
Peter W Spear.
[edited by: tedster at 1:54 am (utc) on Feb. 9, 2004]
redirect /scripts http://www.stoptheviruscold.invalid
redirect /MSADC http://www.stoptheviruscold.invalid
redirect /c http://www.stoptheviruscold.invalid
redirect /d http://www.stoptheviruscold.invalid
redirect /_mem_bin http://stoptheviruscold.invalid
redirect /msadc http://stoptheviruscold.invalid
RedirectMatch (.*)\cmd.exe$ http://stoptheviruscold.invalid$1
RewriteEngine on
RewriteCond %{HTTP_REFERER}!^http://example-example.com/.*$ [NC]
RewriteCond %{HTTP_REFERER}!^http://www.example-example.com/.*$ [NC]
RewriteRule .*\.(jpg¦jpeg¦gif¦png¦bmp)$ - [F,NC]
[edited by: tedster at 6:35 am (utc) on Feb. 9, 2004]
Add the following RewriteCond to the beginning of your anti-hotlinking code section (just ahead of the other RewriteConds):
RewriteCond %{HTTP_REFERER} .
HTTP_REFERER is not reliable, and this is a good example of a very common problem with it.
Jim