New domain... forwarding?

you could redirect the site in IIS from the source webserver but you would need access to the server for this.

you can also setup an HTML redirect using something like this in your page code:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Your Page Title</title>
<meta http-equiv="REFRESH" content="0;url=http://www.the-domain-you-want-to-redirect-to.com"></HEAD>
<BODY>
Optional page text here.
</BODY>
</HTML>

There's a lot of stuff here on redirects also:

http://www.seocompany.ca/seo/url-redirect.html
 
Last edited:
I'm not using IIS, I'm using Apache, and the sites are the same - on the same server in the same place - so I couldn't use a meta redirect either. I need a htaccess solution. Thanks anyway :)
 
use htaccess mod_rewrite to redirect to the new domain.
Unfortunatley I am crappy on mod rewrite so hopefully the gurus here will help you!
 
Sure it does, I've got 7 high traffic domains proxied that way.

Maybe it's the structure of your site. Try:
Code:
RewriteRule ^/(.*)    http://www.newdomain.com/$1   [P]


I can demonstrate proof of concept if you email me.
 
Last edited:
Hm... Clicking at the first link looks like you got it working?
 
Back
Top Bottom