Ramshock
CAF Pilib De Brún Translator
that if you type in redcafe.net into your explorer or firefox without typing in the www. it will take you to the sign in screen and then wont let you sign in. Any reason for that?
RewriteEngine On
RewriteCond %{HTTP_HOST} ^x42bn6.com
RewriteRule (.*) http://www.x42bn6.com/$1 [R=301,L]
It's because RedCafe.net : The Leading Manchester United Forum doesn't redirect to RedCafe.net : The Leading Manchester United Forum, while http://redcafe.net/$1 redirects to https://www.redcafe.net/$1. So when you log in at RedCafe.net : The Leading Manchester United Forum, it stores cookies for RedCafe.net : The Leading Manchester United Forum but when it redirects (RedCafe.net : Forum => RedCafe.net : Forum), the cookies aren't set (I think login.php must do something else here).
My website has this in its .htaccess file which will force any non-www URLs to go to their www equivalents, although of course Niall will want to be more careful as it could impact SEO and search engine spiders.
Code:RewriteEngine On RewriteCond %{HTTP_HOST} ^x42bn6.com RewriteRule (.*) http://www.x42bn6.com/$1 [R=301,L]
Don't actually know what this does, but HTTP 301 is a permanent redirect.