Contact Us Forum Rules Search Archive
WebProWorld Part of WebProNews.com
Page One Link To Us Edit Profile Private Messages Archives FAQ RSS Feeds  
 

Go Back   WebProWorld > Search Engines > Google Discussion Forum
Subscribe to the Newsletter FREE!


Register FAQ Members List Calendar Arcade Chatbox Mark Forums Read

Google Discussion Forum Google Discussion forum is for topics specifically related to Google. There is a subforum dedicated to AdSense/AdWords subjects.

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 12-28-2004, 12:27 PM
WebProWorld New Member
 

Join Date: Mar 2004
Location: Canada
Posts: 18
Wildflowerdyes RepRank 0
Default Google pagerank from 5 to 0. Can you help?

Hi, Thanks for reading this......
I have just changed all my URL address extentions to include words instead of numbers. For example, my address used to look something like this:
www.wildflowerdyes.CityMax/page/page/12345.html
I have know changed it to:
http://www.wildflowerdyes.com/tiedye_home.html
I did this because I was told it would increase my search engine ranking as I have added a keyword into the address. I checked my pagerank this morning and it has changed from 5 to 0, will this change back eventually? Can anyone explain why this would happen?
Thanks so much,
Valerie
Reply With Quote
  #2 (permalink)  
Old 12-28-2004, 02:33 PM
minstrel's Avatar
WebProWorld 1,000+ Club
 

Join Date: Jul 2003
Location: Ottawa, Canada
Posts: 3,466
minstrel RepRank 0
Default

It happened because as far as the search engines are concerned those are new pages. I also notice that you are using the underscore as a word separator; if you're looking for any boost that method might provide, you should use hyphens/dashes, not underscores.

Now, to reclaim your old PR, you need to put 301 permanent redirects from each of the old page names to the corresponding new page names. There are several threads here on different methods for doing that. Then wait until the search engines catch up with your changes.

By the way, it's not necessarily going to help a great deal to rename the pages, other than perhaps making it more memorable for your visitors. You might want to reconsider whether it's really worth it.
Reply With Quote
  #3 (permalink)  
Old 12-28-2004, 03:41 PM
WebProWorld New Member
 

Join Date: Mar 2004
Location: Canada
Posts: 18
Wildflowerdyes RepRank 0
Default

Hi minstrel

Thanks for advice. I will change the underscores.
I have no idea how to redirect as you suggested. I will try and find the info on this site.

I guess I should have checked here first before changing my web address extentions because I am now not able to go back to my old addresses as I have checked with my host.

I guess I've learned a good lesson by doing something before really researching the results of that action.
How disapointing :(...........
Reply With Quote
  #4 (permalink)  
Old 12-28-2004, 04:13 PM
minstrel's Avatar
WebProWorld 1,000+ Club
 

Join Date: Jul 2003
Location: Ottawa, Canada
Posts: 3,466
minstrel RepRank 0
Default

There is more than one method. The simplest is the refresh method which you add to the <HEAD> </HEAD> section of your old pages (recreate them if they've been deleted as follows):

Code:
<HTML>
<HEAD>
<META HTTP-EQUIV="REFRESH" CONTENT="10; URL=http://www.yourdomain.com/newpage.html">
<TITLE>This page has moved</TITLE>
</head>
<BODY>


This Page Has Moved

Please update your bookmarks to 
<A href="http://www.yourdomain.com/newpage.html">
http://www.yourdomain.com/newpage.html</A>
</p>
</body>
</html>
Don't make the value less than 10 seconds!

Alternatively, if your host allows an .htaccess file, you can use a 301 redirect there:
Code:
Redirect 301 /oldpage.html http://www.yoursite.com/newpage.html
or
Code:
Redirect permanent /oldpage.html http://www.yoursite.com/newpage.html
Or, if you can use PHP:
Code:
<?php
header("HTTP/1.1 301 Moved Permanently"); 
header("Location: http://www.newdomain.com/page.html"); 
exit(); 
?>
Or, if you're on a Windows server, use ASP:
Code:
<%
response.Status = "301 Moved Permanently"
response.addheader "location", "http://www.newdomain.com/page.html"
response.end
%>
Reply With Quote
Reply

  WebProWorld > Search Engines > Google Discussion Forum
Tags: , ,



Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Search Engine Optimization by vBSEO 3.2.0