Well, Firefox (perhaps others) can optionally disable meta redirects. If a browser will follow meta redirects, it makes no difference if javascript is enabled or not. Using it (meta) is just a partial fall back measure. The link is the ultimate fool proof fall back. However, make sure you are using the meta redirect properly. It should be the first thing in the head section of the page, ex:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="refresh" content="0;URL=http://www.google.com/">
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
</body>
</html>
A common mistake is to quote the URL. However, since it is a part of the content attribute, only the entire content attribute should be quoted.
Now, as to a server side redirect, are you saying that none is available from the old domain, the new domain, or both? The only place you would need (or could use) support for it would be from the old domain. If they have asp, PHP, or another server side language, or even just enable .htaccess - one of those could be used.
Bookmarks