The Moz Q&A Forum

    • Forum
    • Questions
    • My Q&A
    • Users
    • Ask the Community

    Welcome to the Q&A Forum

    Browse the forum for helpful insights and fresh discussions about all things SEO.

    1. SEO and Digital Marketing Q&A Forum
    2. Categories
    3. Technical SEO Issues
    4. Lost ranking once optimised a page

    Lost ranking once optimised a page

    Technical SEO Issues
    22 6 1.7k
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as question
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • mybabyradio
      mybabyradio @mybabyradio last edited by

      Also, just been downstairs and done a search for the term on two separate PC's on a variety of browsers with different IP's than what we use upstairs and our searched term didn't appear in google's searches. Now I'm baffled. 😞

      1 Reply Last reply Reply Quote 0
      • mybabyradio
        mybabyradio @mybabyradio last edited by

        Oh, and as another slant. I've just done a Google search on my iPhone and it appears at number 13. Obviously there's a discrepancy somewhere?

        1 Reply Last reply Reply Quote 0
        • RyanKent
          RyanKent @mybabyradio last edited by

          Your htags look good to me.

          The code for a canonical tag looks like:

          The canonical tag can go anywhere within the tag of your page.

          Once you decide upon a URL style, be consistent throughout your site. You can decide on www vs non-www, and whether pages should end with a trailing slash.

          1 Reply Last reply Reply Quote 0
          • RyanKent
            RyanKent @mybabyradio last edited by

            You used to see the search result at #13, I see it at 13, and your iphone sees it there as well. I am going to go with the ranking of 13.

            The other search results can be affected by numerous factors. Search Safe, your location, which Google search engine is used (uk vs .com vs others), past browsing history, and numerous other factors can be used to adjust the search results. These changes can happen even if you are not logged into Google.

            With the above noted, the results are jumping around too much for my taste. I would suggest you perform additional tests, try clearing cache, try other browsers ( ie / chrome ) on the same pc and see what you come up with.

            Good luck.

            1 Reply Last reply Reply Quote 1
            • mybabyradio
              mybabyradio @mybabyradio last edited by

              Hi Ryan, I've added the canonical tag, but when I've saved it it's swapped around the the way you've listed it. Check it out in the source and let me know what you think? Also, all the URLS should be like this http://www.mybabyradio.com/experts-faq/conjunctivitis/ How do I do a 301 redirect?

              1 Reply Last reply Reply Quote 0
              • mybabyradio
                mybabyradio @mybabyradio last edited by

                I agree, strange but more testing is required me thinks. In regards to the canonical tag this is what it looks like in our source:- Thinking on shouldn't it look like this

                1 Reply Last reply Reply Quote 0
                • mybabyradio
                  mybabyradio @mybabyradio last edited by

                  Hi Ryan, for now, I'm gonna take the canonical tag off as I'm not sure it's right or if they're even helping sites. Just read some horror stories about these tags. Look forward to your reply in due course.

                  Many thanks

                  Peter

                  1 Reply Last reply Reply Quote 0
                  • Guest
                    Guest last edited by

                    This post is deleted!
                    oznappies 1 Reply Last reply Reply Quote 0
                    • oznappies
                      oznappies @mybabyradio last edited by

                      The canonical do help as they funnel the links to provide rank for the http://www.mybabyradio.com/experts-faq/conjunctivitis page. If you leave it out and follow Google webmaster tools you will see duplicate content errors showing up with the 4 urls Ryan mentioned highlighted.

                      1 Reply Last reply Reply Quote 0
                      • oznappies
                        oznappies @Guest last edited by

                        Any unsafe sites will be removed from the pages. So if you are 15 and there are 2 unsafe sites between 1 and 15 your rank will move up 2 spots to replace the pages that cannot be shown and so your rank will show 13.

                        Guest 1 Reply Last reply Reply Quote 0
                        • Hurf
                          Hurf last edited by

                          I had a very similar problem with my own site disappearing from the SERPS, but showing as it should on any other PCs (that I hadn't previously used.)

                          The problem then related to Google's personalised search. Essentially, I had accidentally deleted my site and prevented it showing up in personalised search - though it still worked in any other browser that wasn't displaying my personalised results. ( See this article: http://www.searchenginejournal.com/google-test-lets-users-vote-add-and-delete-sites-in-serps/6031/ )

                          To remove personalised search take a look at: http://www.google.com/support/accounts/bin/answer.py?answer=54048

                          This sounds to be a likely suspect for the issue you are having.

                          Personalised Search can also provide false results as you are seeing personalised results, based on your search history, activity and preferences, rather than the non-personalised results as they actually appear without personalised bias in the SERPS.

                          You can see your web history settings here: https://www.google.com/history/

                          Hope that helps!

                          1 Reply Last reply Reply Quote 1
                          • Guest
                            Guest @oznappies last edited by

                            This post is deleted!
                            1 Reply Last reply Reply Quote 0
                            • RyanKent
                              RyanKent @mybabyradio last edited by

                              Hi Peter.

                              I am not clear what you mean by "swapped around". If the position of the href and rel properties were reversed, that is fine.

                              As far as which version of your link is used, with or without a trailing slash, that is up to your preference. I tend to think that a trailing slash represents a folder while a lack of a trailing slash represents a page. My preference for the conjunctivitis would be without the trailing slash.

                              The canonical tag, like most tools, can be used correctly to help your results. If used incorrectly, your results can worsen. It is a very important piece of code along with 301 redirects. I highly recommend taking a bit of time learning about both. My best advice is google "Matt Cutts canonical" and reviewing some of the results, along with "Matt Cutts 301".

                              1 Reply Last reply Reply Quote 1
                              • kwoolf
                                kwoolf @mybabyradio last edited by

                                Hi Ryan,

                                Looks like you're using Wordpress. To take care of those redirect issue, try the following in your .htaccess file. Test thoroughly on a demo site before going live with this. Wordpress plugins that you're using might have options that reach the same effect, so look into that as well.

                                RewriteEngine on
                                Options +FollowSymLinks

                                #Force trailing slash
                                    RewriteCond %{REQUEST_FILENAME} !-f
                                    RewriteCond %{HTTP_HOST} !^(www.)?mybabyradio.com/$ [NC]
                                    RewriteCond %{REQUEST_URI} !(.)/$
                                    RewriteRule ^(.
                                )$ http://www.mybabyradio.com/$1/ [R=301,L]
                                #Redirect non-www to www
                                    RewriteCond %{HTTP_HOST} ^mybabyradio.com$ [NC]
                                    RewriteRule ^(.*)$ http://www.mybabyradio.com/$1 [R=301,L]

                                1 Reply Last reply Reply Quote 0
                                • 1
                                • 2
                                • 1 / 2
                                • First post
                                  Last post
                                • Is page rank lost through a 301 redirect?
                                  RG_SEO
                                  RG_SEO
                                  0
                                  5
                                  2.8k

                                • Home page indexed but not ranking...interior pages with thin content outrank home page??
                                  DougHosmer
                                  DougHosmer
                                  0
                                  3
                                  294

                                • Which carries more weight Google page rank or Alexa Rank?
                                  sherohass
                                  sherohass
                                  0
                                  3
                                  397

                                • 2 links on home page to each category page ..... is page rank being watered down?
                                  QubaSEO
                                  QubaSEO
                                  0
                                  6
                                  436

                                • Two different page authority ranks for the same page
                                  trophycentraltrophiesandawards
                                  trophycentraltrophiesandawards
                                  0
                                  3
                                  484

                                • Ranked on Page 1, now between page 40-50... Please help!
                                  Prime85
                                  Prime85
                                  0
                                  8
                                  802

                                • Lost page rank, am I in the sandbox?
                                  onurkiyak
                                  onurkiyak
                                  0
                                  9
                                  1.0k

                                • Are .html pages better for ranking than .asp pages
                                  AlanMosley
                                  AlanMosley
                                  0
                                  8
                                  2.1k

                                Get started with Moz Pro!

                                Unlock the power of advanced SEO tools and data-driven insights.

                                Start my free trial
                                Products
                                • Moz Pro
                                • Moz Local
                                • Moz API
                                • Moz Data
                                • STAT
                                • Product Updates
                                Moz Solutions
                                • SMB Solutions
                                • Agency Solutions
                                • Enterprise Solutions
                                • Digital Marketers
                                Free SEO Tools
                                • Domain Authority Checker
                                • Link Explorer
                                • Keyword Explorer
                                • Competitive Research
                                • Brand Authority Checker
                                • Local Citation Checker
                                • MozBar Extension
                                • MozCast
                                Resources
                                • Blog
                                • SEO Learning Center
                                • Help Hub
                                • Beginner's Guide to SEO
                                • How-to Guides
                                • Moz Academy
                                • API Docs
                                About Moz
                                • About
                                • Team
                                • Careers
                                • Contact
                                Why Moz
                                • Case Studies
                                • Testimonials
                                Get Involved
                                • Become an Affiliate
                                • MozCon
                                • Webinars
                                • Practical Marketer Series
                                • MozPod
                                Connect with us

                                Contact the Help team

                                Join our newsletter
                                Moz logo
                                © 2021 - 2026 SEOMoz, Inc., a Ziff Davis company. All rights reserved. Moz is a registered trademark of SEOMoz, Inc.
                                • Accessibility
                                • Terms of Use
                                • Privacy