Everett,
Have tried your blank page idea here -
http://www.sportingfish.co.uk/blankerror.html this is the direct path to the file and try any junked URL and you will just get an empty page.... It would seem that is the hosting that has some odd setting going on here... Not sure they allow custom Error pages...
I have looked around the cPanel and set up custom error pages to a url I have identified but its not working as you can see by typing in any junk url to the domain www.sportingfish.co.uk
Thanks for your replies so far - any other ideas?
HTACCESS file is just as below:
# Vital components of your .htaccess file
RewriteEngine On
RewriteBase /
# Force “www.yourdomain.com” instead of just “yourdomain.com”
RewriteCond %{HTTP_HOST} .
RewriteCond %{HTTP_HOST} !^www\.sportingfish\.co.uk [NC]
RewriteRule (.*) http://www.sportingfish.co.uk/$1 [R=301,L]
# The Friendly URLs part
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
Cheers