Making a 301 php no follow redirect
This is what I have
This works
<?
Header( "HTTP/1.1 301 Moved Permanently" );
Header( "Location: http://www.hotmail.com" );
?>
This doesn't
<?
Header( "HTTP/1.1 301 Moved Permanently" );
Header( "Location: http://www.hotmail.com"rel="nofollow" );
?>
as it gives me this:
Parse error: syntax error, unexpected T_STRING in /public_html/michaelnguyen/test/index.php on line 3
Thank you for your reply
:)