• majorAlexa

        See all notifications

        Skip to content
        Moz logo Menu open Menu close
        • Products
          • Moz Pro
          • Moz Pro Home
          • Moz Local
          • Moz Local Home
          • STAT
          • Moz API
          • Moz API Home
          • Compare SEO Products
          • Moz Data
        • Free SEO Tools
          • Domain Analysis
          • Keyword Explorer
          • Link Explorer
          • Competitive Research
          • MozBar
          • More Free SEO Tools
        • Learn SEO
          • Beginner's Guide to SEO
          • SEO Learning Center
          • Moz Academy
          • MozCon
          • Webinars, Whitepapers, & Guides
        • Blog
        • Why Moz
          • Digital Marketers
          • Agency Solutions
          • Enterprise Solutions
          • Small Business Solutions
          • The Moz Story
          • New Releases
        • Log in
        • Log out
        • Products
          • Moz Pro

            Your all-in-one suite of SEO essentials.

          • Moz Local

            Raise your local SEO visibility with complete local SEO management.

          • STAT

            SERP tracking and analytics for enterprise SEO experts.

          • Moz API

            Power your SEO with our index of over 44 trillion links.

          • Compare SEO Products

            See which Moz SEO solution best meets your business needs.

          • Moz Data

            Power your SEO strategy & AI models with custom data solutions.

          Let your business shine with Listings AI
          Moz Local

          Let your business shine with Listings AI

          Learn more
        • Free SEO Tools
          • Domain Analysis

            Get top competitive SEO metrics like DA, top pages and more.

          • Keyword Explorer

            Find traffic-driving keywords with our 1.25 billion+ keyword index.

          • Link Explorer

            Explore over 40 trillion links for powerful backlink data.

          • Competitive Research

            Uncover valuable insights on your organic search competitors.

          • MozBar

            See top SEO metrics for free as you browse the web.

          • More Free SEO Tools

            Explore all the free SEO tools Moz has to offer.

          NEW Keyword Suggestions by Topic
          Moz Pro

          NEW Keyword Suggestions by Topic

          Learn more
        • Learn SEO
          • Beginner's Guide to SEO

            The #1 most popular introduction to SEO, trusted by millions.

          • SEO Learning Center

            Broaden your knowledge with SEO resources for all skill levels.

          • On-Demand Webinars

            Learn modern SEO best practices from industry experts.

          • How-To Guides

            Step-by-step guides to search success from the authority on SEO.

          • Moz Academy

            Upskill and get certified with on-demand courses & certifications.

          • MozCon

            Save on Early Bird tickets and join us in London or New York City

          Unlock flexible pricing & new endpoints
          Moz API

          Unlock flexible pricing & new endpoints

          Find your plan
        • Blog
        • Why Moz
          • Digital Marketers

            Simplify SEO tasks to save time and grow your traffic.

          • Small Business Solutions

            Uncover insights to make smarter marketing decisions in less time.

          • Agency Solutions

            Earn & keep valuable clients with unparalleled data & insights.

          • Enterprise Solutions

            Gain a competitive edge in the ever-changing world of search.

          • The Moz Story

            Moz was the first & remains the most trusted SEO company.

          • New Releases

            Get the scoop on the latest and greatest from Moz.

          Surface actionable competitive intel
          New Feature

          Surface actionable competitive intel

          Learn More
        • Log in
          • Moz Pro
          • Moz Local
          • Moz Local Dashboard
          • Moz API
          • Moz API Dashboard
          • Moz Academy
        • Avatar
          • Moz Home
          • Notifications
          • Account & Billing
          • Manage Users
          • Community Profile
          • My Q&A
          • My Videos
          • Log Out

        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. Home
        2. Moz Tools
        3. Moz Pro
        4. Link Explorer
        5. Open site explorer is giving me strange redirect message.

        Moz Q&A is closed.

        After more than 13 years, and tens of thousands of questions, Moz Q&A closed on 12th December 2024. Whilst we’re not completely removing the content - many posts will still be possible to view - we have locked both new posts and new replies. More details here.

        Open site explorer is giving me strange redirect message.

        Link Explorer
        2
        11
        1622
        Loading More Posts
        • Watching

          Notify me of new replies.
          Show question in unread.

        • Not Watching

          Do not notify me of new replies.
          Show question in unread if category is not ignored.

        • Ignoring

          Do not notify me of new replies.
          Do not show question in unread.

        • Oldest to Newest
        • Newest to Oldest
        • Most Votes
        Reply
        • Reply as question
        Locked
        This topic has been deleted. Only users with question management privileges can see it.
        • A_Fotografy
          A_Fotografy last edited by

          Hi all,

          I tried to find answer in help section. Few people have asked this before but in none of the answers it tells how they fix it. Sorry I will need to ask here again.

          In Open Site Explorer i get this message.

          You entered the URL https://a-fotografy.co.uk/ which redirects to http://www.a-fotografy.co.uk/. Because it's likely to have more accurate metrics, we're showing data for the redirected URL instead. Click here to analyze https://a-fotografy.co.uk/ instead?

          My current site is https://a-fotografy.co.uk/ not sure why it is redirecting to my old domain. Weird. My web developer couldn't explain this issue.

          Saying that I also go my first analytics report and in priority issues I have

          http://a-fotografy.co.uk   302 redirect and not sure where it is redirecting to.

          If someone could shed some light of how to figure out how to find exactly what is redirecting to what and where is the problem.

          Thank you guys,

          Regards,

          Armands

          1 Reply Last reply Reply Quote 0
          • A_Fotografy
            A_Fotografy @donford last edited by

            Hi Don,

            I got web guy to fix the issue. Seems it should be fixed now and I should have 301 redirects.

            Not sure why I still get that message in Open Site Explorer, but I have raised this with MOZ support.

            Thanks Don for all your help.

            Regards,

            Armands

            1 Reply Last reply Reply Quote 0
            • donford
              donford @A_Fotografy last edited by

              Hi Armands,

              Looks like I made an error in the code posted above (I did not edit the original post it so we can see the problem).

              The 4th line:

              RewriteRule ^(.*)$ http://%1/$1 [R=301,L]

              Should be

              RewriteRule ^(.*)$ https://%1/$1 [R=301,L]

              Since we are redirecting to the HTTPS version.

              The corrected code is as follows:

              #If http is requested (ie https off) then redirect to https none www
                RewriteCond %{HTTPS} off
                RewriteCond %{HTTP_HOST} ^www.(.)$ [NC]
                RewriteRule ^(.
              )$ https://%1/$1 [R=301,L]
              #If https is requested (ie https on) then redirect to https none www
                RewriteCond %{HTTPS} on
                RewriteCond %{HTTP_HOST} ^www.(.)$ [NC]
                RewriteRule ^(.
              )$ https://%1/$1 [R=301,L]

              That still shouldn't change the 302 problem you have, unless this code is executed prior to whatever is causing the 302. I just noticed the error myself and wanted to give you a heads up.

              Thanks,

              Don

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

                Hi Armands,

                Glad to help, as a side note if your developer can't get it sorted then you should be able to talk directly with your Hosting provider. These issues while can be complicated are somewhat common and most host have trained their help desk on how to fix them, at least from my past experiences with many different host.

                Good luck,

                Don

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

                  Thank you Don,

                  Not to worry. I think my developer is stuck now and has no idea how to fix those 302 redirects. Yesterday I noticed that there were few more coming up.

                  Around 2 month ago I changed the site. I have a feeling that something went bad during that process.

                  Now I have hundreds of 404 errors in my webmaster tools and pretty much all of them are old pages and some even from previous website before that which was 3 years ago. Not sure where it is picking up this from.

                  I also noticed that my previous websites urls making 302 redirects and they redirect from https to http urls.

                  Here is what happened when we launched new site.

                  • Changed over to new site. I still had my http address then few weeks after launch we decided that in long term it would be better to have https secure line. Then he added that https and that is where problems started.

                  Seems like old site now is picking up this https as well and doing those 302 redirects.

                  I even don't know why my old site is still being crawled and giving me errors. Weird.

                  I have passed your reply to my developer and see what he will say.

                  Thank you Don,

                  Regards,

                  Armands

                  donford 1 Reply Last reply Reply Quote 0
                  • donford
                    donford @A_Fotografy last edited by

                    Hello,

                    Sorry for not getting back to you sooner. Weekend and all..

                    Okay the problem is still there. You can check the header response codes yourself here:

                    http://tools.seobook.com/server-header-checker

                    The URL http://www.a-fotografy.co.uk/ 302 redirects to https://www.a-fotografy.co.uk/ which 301 redirects to https://a-fotografy.co.uk/

                    There are 2 possible problems I can think of. 1 the code to redirect http://www.a-fotografy.co.uk/ is still in the htaccess file and before the code I gave you. Or 2 the host has a domain redirect in place that is executing on the server before the htaccess is read.

                    For me to help you further please post the contents of your htaccess file and I'll see if there is something I can pick up on.

                    Don

                    1 Reply Last reply Reply Quote 1
                    • A_Fotografy
                      A_Fotografy @donford last edited by

                      Hi Jo,

                      We are back to drawing board.

                      My developer tried to fix this issue, but with no results.

                      Not sure what is wrong and why he can't fix it 😞

                      According to webconfs header checker I still have 302 redirects.

                      I think the web guy made things even worse as on my current domain according to same header checker I have 400 bad request coming back.

                      Help please. Not sure what to do.

                      Thanks,

                      Regards,

                      Armands

                      1 Reply Last reply Reply Quote 0
                      • A_Fotografy
                        A_Fotografy @donford last edited by

                        Hi Don,

                        My developer tried to fix this issue today, used your suggested code, but still it seems site explorer brings up the same message 😞 He is stuck and not sure what else to do.

                        I don't know much about the code and he is saying that he has done everything possible.

                        If you have a minute, could you have a look what is the code now?

                        Thank you Don,

                        Regards,

                        Armands

                        donford 1 Reply Last reply Reply Quote 0
                        • donford
                          donford @A_Fotografy last edited by

                          That is correct, 302 is a temporary redirect so it does not pass link juice the same way, and should be fixed asap.

                          Glad to help,

                          Don

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

                            Hi Don,

                            Thank you for looking into this.

                            So basically I need to point all links to my existing domain.

                            I knew there is something weird going on.

                            My old www domain used to be very good in rankings and my guess now since there is 302 all link juice is not passed onto my new domain.

                            Thanks Don I will pass this info to my web developer.

                            Regards,

                            Armands

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

                              Hello Again,

                              Okay so it looks like what is happening is:
                              the http www version is 302 to the https.www version and the https.www version is 301 to the non-www. So what you have is one redirect pointing to another redirect.

                              This is likely confusing Moz, or Moz has in the past crawled a different version and has more data for that so it wants to show you it instead.

                              The headers are:

                              http://www.a-fotografy.co.uk/


                              302 Found

                              Status:    302 Found
                              Code:    302
                              Date:    Thu, 31 Dec 2015 12:43:08 GMT
                              Server:    Apache
                              X-FRAME-OPTIONS:    DENY
                              X-XSS-Protection:    1; mode=block
                              Location:    https://www.a-fotografy.co.uk/
                              Cache-Control:    max-age=0
                              Expires:    Thu, 31 Dec 2015 12:43:08 GMT
                              Vary:    Accept-Encoding
                              Content-Length:    214
                              Keep-Alive:    timeout=10, max=200
                              Content-Type:    text/html; charset=iso-8859-1
                              Connection:    close

                              https://www.a-fotografy.co.uk/


                              301 Moved Permanently

                              Status:    301 Moved Permanently
                              Code:    301
                              Date:    Thu, 31 Dec 2015 12:43:08 GMT
                              Server:    Apache
                              X-FRAME-OPTIONS:    DENY
                              X-XSS-Protection:    1; mode=block
                              Location:    https://a-fotografy.co.uk/
                              Cache-Control:    max-age=0
                              Expires:    Thu, 31 Dec 2015 12:43:08 GMT
                              Vary:    Accept-Encoding
                              Content-Length:    234
                              Connection:    close
                              Content-Type:    text/html; charset=iso-8859-1

                              https://a-fotografy.co.uk/


                              200 OK

                              Status:    200 OK
                              Code:    200
                              Date:    Thu, 31 Dec 2015 12:43:08 GMT
                              Server:    Apache
                              X-FRAME-OPTIONS:    DENY
                              X-XSS-Protection:    1; mode=block
                              Accept-Ranges:    bytes
                              Content-Length:    21886
                              Cache-Control:    max-age=0, public
                              Expires:    Thu, 31 Dec 2015 12:43:08 GMT
                              Vary:    Accept-Encoding,User-Agent
                              X-Powered-By:    WP Rocket/2.6.15
                              Connection:    close
                              Content-Type:    text/html; charset=UTF-8

                              What you want to do is get all your redirects to 301 to the correct version.

                              This should cover it in your .htaccess file
                              EDIT 01/07/2016: Please see the below responses for corrected code.

                              #If http is requested (ie https off) then redirect to https none www
                                RewriteCond %{HTTPS} off
                                RewriteCond %{HTTP_HOST} ^www.(.)$ [NC]
                                RewriteRule ^(.
                              )$ http://%1/$1 [R=301,L]
                              #If https is requested (ie https on) then redirect to https none www
                                RewriteCond %{HTTPS} on
                                RewriteCond %{HTTP_HOST} ^www.(.)$ [NC]
                                RewriteRule ^(.
                              )$ https://%1/$1 [R=301,L]

                              Hope this helps,

                              Don

                              A_Fotografy 1 Reply Last reply Reply Quote 2
                              • 1 / 1
                              • First post
                                Last post

                              Browse Questions

                              Explore more categories

                              • Moz Tools

                                Chat with the community about the Moz tools.

                              • SEO Tactics

                                Discuss the SEO process with fellow marketers

                              • Community

                                Discuss industry events, jobs, and news!

                              • Digital Marketing

                                Chat about tactics outside of SEO

                              • Research & Trends

                                Dive into research and trends in the search industry.

                              • Support

                                Connect on product support and feature requests.

                              • See all categories

                              Related Questions

                              • DigitalThirdCoast

                                Unsolved Why am I not seeing search.yahoo.com in my site's backlink profile?

                                link explorer backling issue

                                When looking at the backlinks for a client's competitor I found that they had a backlink on search.yahoo.com/reviews and our domain (harmonyhit.com) did not. I was using the Link Explorer tool. However, when I go to yahoo Search I see that the website of harmonyhit.com is indexed in Yahoo search and has links to the site. Also, it's sitemap has been recently crawled in Bing webmaster tools which Yahoo uses. Why does our client have the backlink accounted for and we do not?

                                Link Explorer | | DigitalThirdCoast
                                0
                              • fikip46365

                                What is redirect notice?

                                I am newbie.while using moz,I put my competitor url and found some backlink.which included redirect notice .can someone explain me about it? image also adde.thanks view?usp=sharing

                                Link Explorer | | fikip46365
                                0
                              • CinivaAgency

                                WP Events Calendar Creates URLs Too Long in Site Crawler

                                My travel/tourism site is on WP and using an Events plugin that ads a calendar of events to many pages. The MOZ crawler is indexing almost 46K links with a URL too long, but the site only has about 3.8K pages indexed in Google. I can tell MOZ is indexing the same pages over and over again but just adding a random calendar month and year.  Here are some examples. https://www.visitcurrituck.com/four-day-stay/?full=1&long_events=1&country[0]=US&ajaxCalendar=1&mo=10&yr=2003 https://www.visitcurrituck.com/four-day-stay/?full=1&long_events=1&country%5B0%5D=US&ajaxCalendar=1&mo=10&yr=2034 https://www.visitcurrituck.com/beach-houses-family-time/?full=1&long_events=1&country%5B0%5D=US&ajaxCalendar=1&mo=1&yr=1873 Any advice on how to prevent MOZ from indexing this way? I don't believe that Google is seeing this also, but maybe they are. I just know my site has over 63K issues and I'm sure at least 75% or more is because of the way they are picking up on the events calendar. Thanks!

                                Link Explorer | | CinivaAgency
                                1
                              • swapnil12

                                How long will it take for google to reindex 301 redirected url and refresh search results with new urls.

                                We have set up 301 redirects for some subdomains which we are planning to use, but then we changed our focus to main domain. Google has already crawled some of the subdomain pages. As it was duplicate content over subdomains and main domain, we have set up 301 redirects for all subdomains to redirect to the main domain. We have set up 301 redirects a month ago, but some of the search results still show old URLs. Do you need something extra for google search results to refresh with main domain and remove subdomain URLs from google searches? We need rankings to be passed new URLs.

                                Link Explorer | | swapnil12
                                0
                              • IanWatson

                                Moz's new Link Explorer, including our revamped index and DA/PA scores is now open to everyone!

                                Hey Moz Community, Link Explorer is now open to the public! Everyone can access it via a subscription or a free Moz ‘Community’ account. As you may know by now, the brand-new Link Explorer tool is primed to replace Open Site Explorer as Moz’s link building and analysis tool. The Link Explorer project is the result of an incredible amount of perseverance and hard work by the team, and we’re proud to be able to finally share it with you — we know it’s going to revolutionize how you approach link building and make your job easier. You can read more about the tool here in Sarah Bird’s announcement post. Because Link Explorer improves on almost every aspect of Open Site Explorer, the metrics have improved, too. That means you’re likely going to see some Domain Authority and Page Authority discrepancies between OSE’s index and Link Explorer’s index. We definitely suggest you use the new DA/PA from Link Explorer, as they’re more accurate and refresh daily rather than monthly, as was the case with OSE’s index. However, we also realize that many of you use these metrics to report to your clients and colleagues, and a sudden change or fluctuation could potentially make your job harder. Which DA is the real DA? The new DA is based on a much larger index that has many improvements, several of which are designed to make the index more like Google’s than ever before. You should consider moving towards the new DA (and the old DA won’t be updated after April 26th 2018, so the sooner the better). While there will be fluctuations as we improve the model and add features to the index, we expect it to remain largely stable and to be a far more accurate picture of a site’s authority according to how it’s seen by Google. Why is Link Explorer’s DA/PA considered better than OSE’s, and which should I trust? The larger link index with improved crawl selection allows us to produce a stronger model that includes a much larger proportion of the web. That being said, DA and PA should always be considered in the context of your competitors. A drop in PA or DA relative to the old OSE is of little concern if your competitors saw similar movement. Is Domain Authority/Page Authority an absolute score or a relative one? Both DA and PA are relative to the Internet as a whole. If Facebook acquired a billion new links, everyone’s PA and DA would drop relative to Facebook. Because of this, it’s always best to look at PA and DA in comparison to your competitors. What does a drop/raise in DA mean in Link Explorer vs OSE? How can I explain this to my clients when I’m reporting it? DA and PA should always be considered in the context of your competitors. A drop or raise in PA or DA relative to the old OSE is of little concern if your competitors saw similar movement. Reporting that your site has moved from a DA of 45 to a DA of 42 doesn’t tell the whole story, but reporting that your site has a DA of 42 while your main competitor moved from a 43 to a 37 shows that, relative to the sites you’re competing against in the SERPs, your site has significantly more authority and ranking power. What’s happening to MozTrust and MozRank and why, and what should I replace those with? The improvements to our DA/PA and Spam Score metrics now now account for more important nuances in helping you determine one site’s ability to rank higher than another. Because they no longer correlate with Google’s ranking model as well as they used to, MozRank and MozTrust are being deprecated for better metrics. Users should rely on Page Authority, Domain Authority, and Spam Score to determine the importance and quality of pages, domains, and links. I have historical data I use to help my clients benchmark their progress. What do I do now that DA is calculated differently? You should annotate any KPI changes referencing the change in DA and PA. However, most importantly, you should compare those changes to your competitors, as this will best show how strong your site’s authority is relative to the sites you’re competing against in the SERPs. We take updating our metrics very seriously, and our last major update to the model was 7 years ago. Users of Domain Authority and Page Authority can expect us to continue to produce steady, reliable metrics for the long haul, and only make changes to these metrics when we believe the benefits dramatically outweigh the stability of the metric. Do you have any questions about the new metrics? Anticipating a tough time reporting changes to clients or bosses? Metrics, features or functionality missing that you would want to see? Let us know in the thread, and we’ll work to find a good answer for you. Hope you enjoy the new Link Explorer product and the amazing new link index powering it. We are very excited to provide this valuable data to our community and customers.

                                Link Explorer | | IanWatson
                                9
                              • karrabarron

                                What does "Number of Linking Root Domains" in Open Site Explorer actually mean?

                                I've read through the forum, but I'm confused as to what "Number of Linking Root Domains" means in the Linking Domains report. For example, if the root domain is Moz.com and the number is 135,000 does that mean there are 135,000 links from Moz pointing back to my site or does it mean there are 135,000 sites linking back to Moz? Any help is appreciated. Thank you!

                                Link Explorer | | karrabarron
                                1
                              • lotterybase

                                Open Site Explorer and Expired Links?

                                Hi guys, I've been checking a few domains for SEO purposes and it appears that OSE is indexing a lot of links which no longer exist, this has been the case for over 6 months - does OSE cleanse expired links? As I'm sure they will be contributing to authority in the eyes of Moz?

                                Link Explorer | | lotterybase
                                0
                              • 720digital

                                Open site explorer

                                Hi, I am a little confused how open site explorer updates (not sure its working as aspected). It shows the recent discovered links but these then disappear and do not show in the main list (Inbound links) after a few days. Plus the links in the inbound links tab has not changed for nearly 10 weeks, my other tools are showing the new links..... Does it update on a certain data, if so where can i check the status? Thanks

                                Link Explorer | | 720digital
                                0

                              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 - 2025 SEOMoz, Inc., a Ziff Davis company. All rights reserved. Moz is a registered trademark of SEOMoz, Inc.
                              • Accessibility
                              • Terms of Use
                              • Privacy

                              Looks like your connection to Moz was lost, please wait while we try to reconnect.