Greenguy's Board

Greenguy's Board (http://www.greenguysboard.com/board/index.php)
-   General Business Knowledge (http://www.greenguysboard.com/board/forumdisplay.php?f=10)
-   -   What is The Right Way To remove a page (http://www.greenguysboard.com/board/showthread.php?t=56553)

Tommy 2010-02-26 11:32 AM

What is The Right Way To remove a page
 
What is The Right Way To remove a page and move the traffic so you dont catch a Search engine penalty

Cleo 2010-02-26 12:28 PM

Since no one else has spoken up I'll post my opinion.

A 301 redirect tells the search engine that a page has permanently moved.

If it is a whole directory or a domain use this htaccess
Code:

RewriteEngine on
RewriteRule .* http://NEWURL.com/ [R=301,L]

Or if it is just one page on your domain then send the traffic to a 404 page that says the page is missing. From what I understand you should not just send the traffic to the root of your domain as Google devalues your 404 page and also you should not use the full url to your page as this causes a 302 redirect in addition to the 404 redirect.

Code:

ErrorDocument 404 /404.html
But if someone knows better please post.

Greenguy 2010-02-26 10:29 PM

If you have the domain listed in Google's Webmaster Tool area, after you 301 or 404 it, you can ask them to remove the URL from the database too.

Tommy 2010-02-27 08:53 AM

Thank you but how do i 301 it without affecting the other pages on the domain

Simon 2010-02-27 09:55 AM

Quote:

Originally Posted by Tommy (Post 476892)
Thank you but how do i 301 it without affecting the other pages on the domain

In your .htaccess file:

redirect 301 /oldlocation/oldpage.html http://www.yourdomain.com/newpage.html

In the old information you don't want to use a full URL, so don't include the http://www part of the address. Just use the path from the top level of your site. But do use the full URL in the new information. And make sure to leave one single space between each of the items of information on the line in your htaccess file.

This will send a http header message that you've permanently moved that page to the new address and tell the SEs to index just the new URL. It should keep the SE ranking and position and pass them to the new page.

Jel 2010-02-28 04:49 AM

Off topic - Tommy I sent you a PM recently, can you take a look at it please, thanks mate :)

plateman 2010-02-28 10:53 AM

if you have a managed server which most dedicated customers have I just send my host the url I want 301 and its done

davion 2010-03-02 02:23 AM

Try redirecting your site to some temporary page. It will be good so that the visitors will go directly to your temporary page. :D

Tommy 2010-03-02 04:23 PM

Thanks everyone and thank you Simon that worked!!!

Jel.. umm .. did i answer you ??

Jel 2010-03-04 01:10 AM

Not as yet Tommy :)

SammPSK 2010-03-10 08:00 AM

Tommy
I need Your answer too ;)


All times are GMT -4. The time now is 12:54 AM.

Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
© Greenguy Marketing Inc