• Some users have recently had their accounts hijacked. It seems that the now defunct EVGA forums might have compromised your password there and seems many are using the same PW here. We would suggest you UPDATE YOUR PASSWORD and TURN ON 2FA for your account here to further secure it. None of the compromised accounts had 2FA turned on.
    Once you have enabled 2FA, your account will be updated soon to show a badge, letting other members know that you use 2FA to protect your account. This should be beneficial for everyone that uses FSFT.

Suggestion: php redirect

TheBuzzer

HACK THE WORLD!
Joined
Aug 15, 2005
Messages
13,024
http://www.hardforum.com/ is the real site for the forums however

http://hardforum.com/
http://www.hardforums.com/
http://hardforum.com/

all work.

I would suggest a simple code like this:

Code:
	if (getenv("HTTP_HOST") == 'hardforum.com' || getenv("HTTP_HOST") == 'www.hardforums.com' || getenv("HTTP_HOST") == 'hardforums.com' ) {
		header( 'Location: http://www.hardforum.com'.$_SERVER["REQUEST_URI"] ) ;
		exit;
	}


this way people will all be on the same url and linking problems won't be an issue.
 
thatd be absolutely awesome if it does what i think it does :))
 
the www prefix is typically handled by your dns setup...

But the other domain idea!
 
I agree that this is probably a good idea, if only to make cookies work properly after clicking on any link.

But use mod_alias, PHP is way overkill.
 
I agree that this is probably a good idea, if only to make cookies work properly after clicking on any link.

But use mod_alias, PHP is way overkill.

if they use apache i guess they can do it that way too
 
Back
Top