Forum Moderators: phranque

Message Too Old, No Replies

Redirect from one page to another page on different domain

         

sandpetra

10:03 am on Jan 17, 2006 (gmt 0)

10+ Year Member



I have a page on website A. with a page rank of 5. I have a new site (website B) and I want to move the contents of the page on website A to a page on website B.

What is the best method of doing this, and will I retain the PR etc on the new page.

le_gber

11:20 am on Jan 17, 2006 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



hello sandpetra

the best way of doing this is by using what is called a 301 Permanent redirect - try googleing for it or even a webmasterworld search. It will allow you to 'transfer' the Google PR to the new domain

If all your pages will keep the same name but just change domain you might want to look into the 301 RedirectMatch as well.

Hope this helps

sandpetra

11:40 am on Jan 17, 2006 (gmt 0)

10+ Year Member



I am not wanting to strip the current domain of it's page rank, only the individual pages concerned, which is buried deep within the site, as far as navigation goes.

Would the 301 still apply to single pages? Cheers for the help.

le_gber

12:35 pm on Jan 17, 2006 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Yes it would.

try googleing site:www.webmasterworld.com 301 permanent redirect

I just remembered that, if your existing page has a .php extension, you could use it to redirect people and it would have the same effect as if it was an .htaccess 301 permanent redirect.

this is the code to do so:

<?php
header("HTTP/1.1 301 Moved Permanently");
header("Location: ht tp://www.yournewsite.com");
exit();
?>

hope this helps

sandpetra

2:35 pm on Jan 17, 2006 (gmt 0)

10+ Year Member



The page is not a php page.

So, just to be sure, if I apply a 301 on that page, the main domain should still remain page ranked @6 but my page traffic should be transferred to my new site (site B) for the single page I am interested in! Phew!

le_gber

8:42 am on Jan 18, 2006 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



yes it will.

sandpetra

9:28 am on Jan 18, 2006 (gmt 0)

10+ Year Member



cheers!

sandpetra

1:09 pm on Jan 19, 2006 (gmt 0)

10+ Year Member



Hi - Another quick question - can anyone tell me how long will it take, if I use a server redirect, for people to be transferred to my new page and for Google to reassign the page rank?

le_gber

3:02 pm on Jan 19, 2006 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



for people and spiders to be transferred to new page: instant
for google to reassign pageRank: depends I would say couple of weeks to a month

sandpetra

4:57 pm on Jan 19, 2006 (gmt 0)

10+ Year Member



Cheers! I wonder, do you know if I can point a domain to a sub domain and what google thinks of it?

le_gber

6:37 pm on Jan 19, 2006 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



yes you can, not sure how it affects google though - I wouldn't be too paranoid and G will probably traet it as any other subdomain

sandpetra

11:48 am on Jan 26, 2006 (gmt 0)

10+ Year Member



le_gber

I wonder if you could point me in the right direction. i'm about to invoke the 301 for my page but I'm not sure where to put the code and if it'll even work with my static .hmt page?

I'm a bit confused....server side stuff isnt really my forte...

le_gber

1:11 pm on Jan 26, 2006 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



hi there, have a look there:

[webmasterworld.com...]

it should go in a file that you call .htaccess that you have to put at the root level of your site. Check with your hosting company if one already exist - it should - and simply add the line(s) JdMorgan wrote modified to suit your own case.

hope this helps.

sandpetra

1:47 pm on Jan 26, 2006 (gmt 0)

10+ Year Member



Thanks v. much!