undefined
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
    • SEO Q&A
    • Webinars, Whitepapers, & Guides
  • Blog
  • Why Moz
    • Agency Solutions
    • Enterprise Solutions
    • Small Business Solutions
    • Case Studies
    • 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.

    NEW Keyword Suggestions by Topic
    Moz Pro

    NEW Keyword Suggestions by Topic

    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.

    • SEO Q&A

      Insights & discussions from an SEO community of 500,000+.

    Unlock flexible pricing & new endpoints
    Moz API

    Unlock flexible pricing & new endpoints

    Find your plan
  • Blog
  • Why Moz
    • 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.

    • Case Studies

      Explore how Moz drives ROI with a proven track record of success.

    • 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
  • 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. SEO Tactics
  3. Intermediate & Advanced SEO
  4. Infinite Redirect Loop without trailing slash, please help

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.

Infinite Redirect Loop without trailing slash, please help

Intermediate & Advanced SEO
3
11
3.8k
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as question
Log in to reply
This topic has been deleted. Only users with question management privileges can see it.
  • debc
    debc last edited by Sep 17, 2012, 6:35 PM

    I've been searching for an answer all day, I can't seem to figure this out.

    When I Fetch my blog as Google(http://www.mysite.com/blog) WITHOUT a trailing slash at the end, I get this error:

    The page seems to redirect to itself. This may result in an infinite redirect loop

    **HTTP/1.1 301 Moved Permanently**

    When I Fetch my blog as Google WITH the trailing slash at the end(http://www.mysite.com/blog/), it is fine without errors.

    When I pull it up in a browser comes up fine both with and without the trailing slash.

    My .htaccess file in the root directory contains this:

    RewriteEngine On
    RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index.htm\ HTTP/
    RewriteRule ^index.htm$ http://www.mysite.com/ [R=301,L]
    RewriteCond %{HTTP_HOST} ^mysite.com$
    RewriteRule ^(.*)$ http://www.mysite.com/$1 [R=301,L]

    My .htaccess file in the blog directory contains this:

    BEGIN WordPress

    <ifmodule mod_rewrite.c="">RewriteEngine On
     RewriteBase /blog/
     RewriteCond %{REQUEST_URI} ^./index.php/. [NC]
     RewriteRule ^index.php/(.*)$ http://www.mysite.com/blog/$1 [R=301,L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /blog/index.php [L]</ifmodule>

    END WordPress

    Do I have something incorrectly coded in these .htaccess files that could be causing this? Or is there something else I should look at? Thank you for any help!!

    1 Reply Last reply Reply Quote 0
    • debc
      debc @debc last edited by Sep 25, 2012, 9:25 PM Sep 25, 2012, 9:25 PM

      I combined the htaccess files (putting the blog rewrite rule to the bottom of the file) now having just one htacess in the root directory and unfortunately it did not work. When I tried it, all the links on the blog would not work, they were all "page not found" so I reverted it back to what I originally had... Here is what the combined htaccess file looked like:

      RewriteEngine On
      RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index.htm\ HTTP/
      RewriteRule ^index.htm$ http://www.example.com/ [R=301,L]
      RewriteCond %{HTTP_HOST} ^example.com$
      RewriteRule ^(.*)$ http://www.example.com/$1 [R=301,L]

      <ifmodule mod_rewrite.c="">RewriteEngine On
       RewriteBase /blog/
       RewriteCond %{THE_REQUEST} ^./index.php/. [NC]
       RewriteRule ^index.php/(.*)$ http://www.example.com/blog/$1 [R=301,L]
      RewriteCond %{REQUEST_FILENAME} !-f
      RewriteCond %{REQUEST_FILENAME} !-d
      RewriteRule . /blog/index.php [L]</ifmodule>

      Thanks again for any insight!

      1 Reply Last reply Reply Quote 0
      • SEOKeith
        SEOKeith @debc last edited by Sep 19, 2012, 8:29 PM Sep 19, 2012, 8:29 PM

        Hey Debora,

        Any luck?

        Keith

        1 Reply Last reply Reply Quote 0
        • GeorgeAndrews
          GeorgeAndrews @debc last edited by Sep 18, 2012, 7:51 PM Sep 18, 2012, 7:51 PM

          Hello Debora,

          Make sure you keep copies of your .htaccess files before you make changes and, if you can, use a test site to test your changes first before you make changes on your live website.

          I'm not sure how your website is set up so I don't know if combining the two files will accomplish what you are looking for.

          Whatever you do, make sure you have backups.

          1 Reply Last reply Reply Quote 0
          • SEOKeith
            SEOKeith @debc last edited by Sep 18, 2012, 5:41 PM Sep 18, 2012, 5:41 PM

            Yes as I said above 🙂

            1 Reply Last reply Reply Quote 0
            • debc
              debc @debc last edited by Sep 18, 2012, 5:39 PM Sep 18, 2012, 5:39 PM

              Thanks for your response Keith, I'll give it a try and let you know!

              1 Reply Last reply Reply Quote 0
              • debc
                debc @GeorgeAndrews last edited by Sep 18, 2012, 5:38 PM Sep 18, 2012, 5:38 PM

                Thanks George.  Please forgive me, I am a newbie at this!  I took a look at the link you provided, and I don't fully understand what they are explaining.  What I did understand is that having 2 htaccess files in different directories caused a problem with their code.  Do you think combining the two files into one on the root directory will make a difference for me?

                SEOKeith GeorgeAndrews 2 Replies Last reply Sep 18, 2012, 7:51 PM Reply Quote 0
                • SEOKeith
                  SEOKeith @debc last edited by Sep 18, 2012, 5:41 PM Sep 18, 2012, 5:36 PM

                  Sorry, I completely misread this question (I missed the part where you said you had to .htaccess files!).

                  Yes put one .htaccess file in the root dir, add the blog rewrite rule to the bottom of the file.

                  Let me know how it goes.

                  Keith

                  1 Reply Last reply Reply Quote 0
                  • debc
                    debc @SEOKeith last edited by Sep 18, 2012, 5:07 PM Sep 18, 2012, 5:07 PM

                    Thanks Keith.  I tried it and it is still looping.  Do you think it has something to do with having 2 different .htaccess files?  Should I combine them into just one in the root directory?

                    SEOKeith debc 4 Replies Last reply Sep 25, 2012, 9:25 PM Reply Quote 0
                    • SEOKeith
                      SEOKeith last edited by Sep 17, 2012, 7:45 PM Sep 17, 2012, 7:45 PM

                      Yuk mod_rewrite...

                      Try:

                      RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index.php\ HTTP/
                      RewriteRule ^index.php$ http://www.example.com/blog/ [R=301,L]

                      You may wish to add $1 on the end

                      RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index.php\ HTTP/
                      RewriteRule ^index.php$ http://www.example.com/blog/$1 [R=301,L]

                      Let me know if that stops it looping...

                      Keith

                      debc 1 Reply Last reply Sep 18, 2012, 5:07 PM Reply Quote 0
                      • GeorgeAndrews
                        GeorgeAndrews last edited by Sep 17, 2012, 8:23 PM Sep 17, 2012, 7:05 PM

                        Try here. Maybe that will help.

                        Edit: Pretty sure it's your root directory .htaccess file that is causing the looping. I'd start with that.

                        debc 1 Reply Last reply Sep 18, 2012, 5:38 PM Reply Quote 0
                        • 1 / 1
                        1 out of 11
                        • First post
                          1/11
                          Last post

                        Got a burning SEO question?

                        Subscribe to Moz Pro to gain full access to Q&A, answer questions, and ask your own.


                        Start my free trial


                        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

                        • Chris8198

                          301 Redirecting from domain to subdomain

                          We're taking on a redesign of our corporate site on our main domain.  We also have a number of well established, product based subdomains. There are a number of content pages that currently live on the corporate site that rank well, and bring in a great deal of traffic, though we are considering placing 301 redirects in place to point that traffic to the appropriate pages on the subdomains. If redirected correctly, can we expect the SEO value of the content pages currently living on the corporate site to transfer to the subdomains, or will we be negatively impacting our SEO by transferring this content from one domain to multiple subdomains?

                          Intermediate & Advanced SEO | Apr 26, 2017, 9:12 AM | Chris8198
                          0
                        • HappyJackJr

                          Help with facet URLs in Magento

                          Hi Guys, Wondering if I can get some technical help here... We have our site britishbraces.co.uk , built in Magento. As per eCommerce sites, we have paginated pages throughout. These have rel=next/prev implemented but not correctly ( as it is not in is it in ) - this fix is in process. Our canonicals are currently incorrect as far as I believe, as even when content is filtered, the canonical takes you back to the first page URL. For example, http://www.britishbraces.co.uk/braces/x-style.html?ajaxcatalog=true&brand=380&max=51.19&min=31.19 Canonical to... http://www.britishbraces.co.uk/braces/x-style.html Which I understand to be incorrect. As I want the coloured filtered pages to be indexed ( due to search volume for colour related queries ), but I don't want the price filtered pages to be indexed - I am unsure how to implement the solution? As I understand, because rel=next/prev implemented ( with no View All page ), the rel=canonical is not necessary as Google understands page 1 is the first page in the series. Therefore, once a user has filtered by colour, there should then be a canonical pointing to the coloured filter URL? ( e.g. /product/black ) But when a user filters by price, there should be noindex on those URLs ? Or can this be blocked in robots.txt prior? My head is a little confused here and I know we have an issue because our amount of indexed pages is increasing day by day but to no solution of the facet urls. Can anybody help - apologies in advance if I have confused the matter. Thanks

                          Intermediate & Advanced SEO | Sep 5, 2016, 5:39 AM | HappyJackJr
                          0
                        • Colin.Accela

                          Setting up 301 Redirects after acquisition?

                          Hello! The company that I work for has recently acquired two other companies. I was wondering what the best strategy would be as it relates to redirects / authority. Please help! Thanks

                          Intermediate & Advanced SEO | Feb 6, 2015, 5:32 PM | Colin.Accela
                          0
                        • DA2013

                          How do you 301 redirect URLs with a hashbang (#!) format? We just lost a ton of pagerank because we thought javascript redirect was the only way! But other sites have been able to do this – examples and details inside

                          Hi Moz, Here's more info on our problem, and thanks for reading! We’re trying to Create 301 redirects for 44 pages on site.com. We’re having trouble 301 redirecting these pages, possibly because they are AJAX and have hashbangs in the URLs. These are locations pages. The old locations URLs are in the following format: www.site.com/locations/#!new-york and the new URLs that we want to redirect to are in this format: www.site.com/locations/new-york We have not been able to create these redirects using Yoast WordPress SEO plugin v.1.5.3.2. The CMS is WordPress version 3.9.1 The reason we want to 301 redirect these pages is because we have created new pages to replace them, and we want to pass pagerank from the old pages to the new. A 301 redirect is the ideal way to pass pagerank. Examples of pages that are able to 301 redirect hashbang URLs include http://www.sherrilltree.com/Saddles#!Saddles and https://twitter.com/#!RobOusbey.

                          Intermediate & Advanced SEO | Mar 26, 2015, 1:29 PM | DA2013
                          0
                        • ArchMedia

                          Should I redirect images when I migrate my site

                          We are about to migrate a large website with a fair few images (20,000). At the moment we include images in the sitemap.xml so they are indexed by Google and drive traffic (not sure how I can find out how much though). Current image slugs are like:
                          http://website.com/assets/images/a2/65680/thumbnails/638x425-crop.jpg?1402460458 Like on the old site, images on the new website will also have unreadable cache slugs, like:
                          http://website.com/site_media/media/cache/ce/7a/ce7aeffb1e5bdfc8d4288885c52de8e3.jpg All content pages on the new site will have the same slugs as on the old site. Should I go through the trouble of redirecting all these images?

                          Intermediate & Advanced SEO | Jul 7, 2014, 10:49 AM | ArchMedia
                          0
                        • MozAddict

                          Magento Trailing Slash URL Problem

                          Howdy Mozzers! Our magento store URL's are accessible with or without a trailing slash at the end. Canonical's and 301 redirects are not set up for one of them at the moment. Will this cause duplicate issue? Do we need to set canonical or 301 up? Which one is recommended? MozAddict

                          Intermediate & Advanced SEO | May 9, 2014, 3:53 PM | MozAddict
                          0
                        • SMG-Texas

                          301 Redirect of subdomain?

                          Fellow Mozzers, I'm having a hard time wrapping my brain around a redirect issue and thought it was worth posing the question to the Moz community.  I did a search first but couldn't find the exact answer I was looking for. How does a 301 redirect work when you redirect a sub domain example.homepage.com to www.homepage.com but you keep the sub directories of example.homepage.com/page-1 active and are trying to rank them?  I'm dealing with a current project where this is happening and this doesn't make sense to me, to redirect the subdomain if you're also trying to rank/create search traffic for pages, sub directories on example.homepage.com. This also get's into the debate of if a sub domain site is viewed as it's own website and therefore has to rank itself.  If this is true, it seems like we're kind of killing the authority of the site by redirecting it. Additionally, www.homepage.com has a much stronger link profile than example.homepage.com I hope this makes sense.  Any thoughts are appreciated.  Thanks for your time.

                          Intermediate & Advanced SEO | Jan 10, 2014, 2:43 AM | SMG-Texas
                          0
                        • BrianAlpert78

                          Can I make 301 redirects on a Windows server (without access to IIS)?

                          Hey everyone, I've been trying to figure out a way to set up some 301 redirects to handle the broken links left behind after a site restructuring, but I can only ever find information on 2 methods that I can't use (as far as I can tell). The first method is to do some stuff with an htaccess file, but that looks like it only works on Linux-based servers. The method described for Windows servers is generally to install this IIS rewrite/redirect module and run that, but I don't think our web hosting company allows users to log directly into the server, so I wouldn't be able to use the IIS thing. Is there any other way to get a 301 redirect set up? And is this uncommon for a web hosting company to do, or do you all just run your sites on Linux-based servers or your own Windows machines? Thanks!

                          Intermediate & Advanced SEO | Mar 4, 2013, 8:53 PM | BrianAlpert78
                          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
                        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

                        Access all your tools in one place. Whether you're tracking progress or analyzing data, everything you need is at your fingertips.

                        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.