We have several sites which we need to automatically redirect to another site. At the moment we use index.html with following content to do the redirection (sorry about the tags):
<html>
<head>
<meta http-equiv="refresh" content="0; URL=http://www.example.com" />
</head>
</html>
Is there a better way to do automatic redirection? Maybe programatically with 301? We can not use .htaccess, or something like that. We use asp.net and php on those sites which are being redirected.
Cheers
In PHP