Confusing 301 / Canonical Redirect Issue - Wizard Needed
-
I had two pages on my site with identical content. What I did was 301 redirect one page to the other. I also added canonical redirect code to the page that held the 301 code. Here is what I have:
www.careersinmusic.com/music-colleges.aspx - this page was a duplicate and I needed it to resolve to:
www.careersinmusic.com/music-schools.aspxHere is the code I used:
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
music-colleges.aspx
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="music-colleges.aspx.vb" Inherits="music_colleges" %>
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
http://www.w3.org/1999/xhtml">http://www.careersinmusic.com/music-schools.aspx"/>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
music-colleges.aspx.vb
Partial Class music_colleges
Inherits System.Web.UI.Page
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Response.Status = "301 Moved Permanently"
Response.AddHeader("Location", "http://www.careersinmusic.com/music-schools.aspx")
End Sub
End ClassXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
The problem:
For some reason, when the search “music colleges” is done in Google, I am #7. When the term “music schools” is done, I am around 119. I MUST be getting a penalty for some reason, I just cannot figure the reason. When perform well for one term and terrible for the next? All I can come up with is a duplicate content penalty or something along those lines.Also, music-colleges.aspx seems to still be in Googles index, even though the above 301 happened months ago. Thoughts?
site:www.careersinmusic.com/music-colleges.aspx
Any insight into this would be GREATLY appreciated.
Many Thanks!
-
Rather than a penalty, they will choose one to rank over the other.
You dont need a 301 and a canonical, you have one or the other, the difference being that a canonical does not redirect the user to the other page, iot just tells the search engine to give credit to the other page.
It takes time for the search engine to fix tis, if you are ranking for both pages, then II would suggest you have not waited long enouth, when all is finalized, you will only find one page in the index.