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
    • 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
  • 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. Trailing Slashes for Magento CMS pages - 2 URLS - Duplicate content

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.

Trailing Slashes for Magento CMS pages - 2 URLS - Duplicate content

Intermediate & Advanced SEO
3
6
7.5k
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.
  • iamgreenminded
    iamgreenminded last edited by Oct 4, 2015, 1:14 AM

    Hello,

    Can anyone help me find a solution to Fixing and Creating Magento CMS pages to only use one URL  and not two URLS?

    www.domain.com/testpage

    www.domain.com/testpage/

    I found a previous article that applies to my issue, which is using htaccess to redirect request for pages in magento 301 redirect to slash URL from the non-slash URL.  I dont understand the syntax fully in htaccess , but I used this code below.

    This code below fixed the CMS page redirection but caused issues on other pages, like all my categories and products with this error:

    "This webpage has a redirect loop

    ERR_TOO_MANY_REDIRECTS"

    Assuming you're running at domain root.  Change to working directory if needed.

    RewriteBase /

    # www check

    If you're running in a subdirectory, then you'll need to add that in

    to the redirected url (http://www.mydomain.com/subdirectory/$1

    RewriteCond %{HTTP_HOST} !^www. [NC]
    RewriteRule ^(.*)$ http://www.mydomain.com/$1 [R=301,L]

    Trailing slash check

    Don't fix direct file links

    RewriteCond %{REQUEST_FILENAME} !-f

    RewriteCond %{REQUEST_URI} !(.)/$
    RewriteRule ^(.
    )$ $1/ [L,R=301]

    Finally, forward everything to your front-controller (index.php)

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule .* index.php [QSA,L]

    1 Reply Last reply Reply Quote 0
    • iamgreenminded
      iamgreenminded last edited by Oct 6, 2015, 1:25 AM Oct 6, 2015, 1:25 AM

      301's are not difficult for me, but handling the code for a logic to re-route requests for "URL" to "URL/" is something I dont know how to do. I can manually 301 or rel canonical my CMS pages on Magento everytime, but that defeats the purpose or the automation in htaccess I am trying to get working.

      thanks

      1 Reply Last reply Reply Quote 0
      • iamgreenminded
        iamgreenminded @kwoolf last edited by Oct 6, 2015, 1:29 AM Oct 6, 2015, 1:22 AM

        Thank You Kevin.

        This is almost the default Magento htaccess file(out of the box), I think I had a couple entries to fix a couple other issues, the code I just added that isnt working is in the middle of the htaccess, its commented starting with this: ** "## slash removal re-write done by ALEX MEADE for iamgreenminded.com**

        uncomment these lines for CGI mode

        make sure to specify the correct cgi php binary file name

        it might be /cgi-bin/php-cgi

        Action php5-cgi /cgi-bin/php5-cgi

        AddHandler php5-cgi .php

        ############################################

        GoDaddy specific options

        Options -MultiViews

        you might also need to add this line to php.ini

        cgi.fix_pathinfo = 1

        if it still doesn't work, rename php.ini to php5.ini

        ############################################

        this line is specific for 1and1 hosting

        #AddType x-mapp-php5 .php
        #AddHandler x-mapp-php5 .php

        ############################################

        default index file

        DirectoryIndex index.php

        ############################################

        adjust memory limit

        php_value memory_limit 64M

        php_value memory_limit 256M
        php_value max_execution_time 18000

        ############################################

        disable magic quotes for php request vars

        php_flag magic_quotes_gpc off

        ############################################

        disable automatic session start

        before autoload was initialized

        php_flag session.auto_start off

        ############################################

        enable resulting html compression

        #php_flag zlib.output_compression on

        ###########################################

        disable user agent verification to not break multiple image upload

        php_flag suhosin.session.cryptua off

        ###########################################

        turn off compatibility with PHP4 when dealing with objects

        php_flag zend.ze1_compatibility_mode Off

        <ifmodule mod_security.c="">###########################################

        disable POST processing to not break multiple image upload</ifmodule>

        SecFilterEngine Off
        SecFilterScanPOST Off

        ############################################

        enable apache served files compression

        http://developer.yahoo.com/performance/rules.html#gzip

        Insert filter on all content

        ###SetOutputFilter DEFLATE

        Insert filter on selected content types only

        #AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript

        Netscape 4.x has some problems...

        #BrowserMatch ^Mozilla/4 gzip-only-text/html

        Netscape 4.06-4.08 have some more problems

        #BrowserMatch ^Mozilla/4.0[678] no-gzip

        MSIE masquerades as Netscape, but it is fine

        #BrowserMatch \bMSIE !no-gzip !gzip-only-text/html

        Don't compress images

        #SetEnvIfNoCase Request_URI .(?:gif|jpe?g|png)$ no-gzip dont-vary

        Make sure proxies don't deliver the wrong content

        #Header append Vary User-Agent env=!dont-vary

        ############################################

        make HTTPS env vars available for CGI mode

        SSLOptions StdEnvVars

        ############################################

        enable rewrites

        Options +FollowSymLinks
        RewriteEngine on

        ############################################

        slash removal re-write done by ALEX MEADE for iamgreenminded.com

        RewriteBase /
        RewriteCond %{REQUEST_FILENAME} !-f
        RewriteCond %{REQUEST_FILENAME} !-d
        RewriteCond %{REQUEST_URI} !(.)/$
        RewriteCond %{REQUEST_FILENAME} !.(gif|jpg|png|jpeg|css|js)$ [NC]
        RewriteRule ^(.
        )$ http://%{HTTP_HOST}/$1/ [L,R=301]
        ############################################

        ############################################

        you can put here your magento root folder

        path relative to web root

        #RewriteBase /magento/

        ############################################

        uncomment next line to enable light API calls processing

        RewriteRule ^api/([a-z][0-9a-z_]+)/?$ api.php?type=$1 [QSA,L]

        ############################################

        rewrite API2 calls to api.php (by now it is REST only)

        RewriteRule ^api/rest api.php?type=rest [QSA,L]

        ############################################

        workaround for HTTP authorization

        in CGI environment

        RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]

        ############################################

        TRACE and TRACK HTTP methods disabled to prevent XSS attacks

        RewriteCond %{REQUEST_METHOD} ^TRAC[EK]
        RewriteRule .* - [L,R=405]

        ############################################

        redirect for mobile user agents

        #RewriteCond %{REQUEST_URI} !^/mobiledirectoryhere/.$
        #RewriteCond %{HTTP_USER_AGENT} "android|blackberry|ipad|iphone|ipod|iemobile|opera mobile|palmos|webos|googlebot-mobile" [NC]
        #RewriteRule ^(.
        )$ /mobiledirectoryhere/ [L,R=302]

        ############################################

        always send 404 on missing files in these folders

        RewriteCond %{REQUEST_URI} !^/(media|skin|js)/

        ############################################

        never rewrite for existing files, directories and links

        RewriteCond %{REQUEST_FILENAME} !-f
        RewriteCond %{REQUEST_FILENAME} !-d
        RewriteCond %{REQUEST_FILENAME} !-l

        ############################################

        rewrite everything else to index.php

        RewriteRule .* index.php [L]

        ############################################

        Prevent character encoding issues from server overrides

        If you still have problems, use the second line instead

        AddDefaultCharset Off
        #AddDefaultCharset UTF-8

        ############################################

        Add default Expires header

        http://developer.yahoo.com/performance/rules.html#expires

        ExpiresDefault "access plus 1 year"

        ############################################

        By default allow all access

        Order allow,deny
        Allow from all

        ###########################################

        Deny access to release notes to prevent disclosure of the installed Magento version

        <files release_notes.txt="">order allow,deny
        deny from all</files>

        ############################################

        If running in cluster environment, uncomment this

        http://developer.yahoo.com/performance/rules.html#etags

        #FileETag none

        Permanent URL redirect - generated by www.rapidtables.com

        Redirect 301 /thebirdword http://www.thebirdword.com

        1 Reply Last reply Reply Quote 0
        • kwoolf
          kwoolf @iamgreenminded last edited by Oct 5, 2015, 9:30 AM Oct 5, 2015, 9:30 AM

          You probably have other redirects in your .htaccess and possibly in your website code. The order of your rewrites is also important. Publish your Apache config and I'll take a look.

          FYI, there are better resources for technical issue than MOZ. Most here are not developers/IT specialists; we're more like SEO strategists and business managers.

          iamgreenminded 1 Reply Last reply Oct 6, 2015, 1:22 AM Reply Quote 0
          • iamgreenminded
            iamgreenminded last edited by Oct 5, 2015, 2:57 AM Oct 5, 2015, 2:56 AM

            RewriteEngine On
            RewriteBase /
            RewriteCond %{REQUEST_FILENAME} !-f
            RewriteCond %{REQUEST_URI} !example.php
            RewriteCond %{REQUEST_URI} !(.)/$
            RewriteRule ^(.
            )$ http://domain.com/$1/ [L,R=301]

            I have found both of the articles you linked here, nothing is working - any code I try gives me the same error on most of my pages:

            "This webpage has a redirect loop

            ERR_TOO_MANY_REDIRECTS"

            Still need a fix for this

            thanks

            kwoolf 1 Reply Last reply Oct 5, 2015, 9:30 AM Reply Quote 0
            • kwoolf
              kwoolf last edited by Oct 4, 2015, 9:28 AM Oct 4, 2015, 9:27 AM

              Yes, server redirects are necessary. Try these solutions to see which one works for you:

              http://ralphvanderpauw.com/seo/how-to-301-redirect-a-trailing-slash-in-htaccess/

              http://enarion.net/web/htaccess/trailing-slash/

              You might want to consider moving to Nginx. You'll notice amazing speed and stability improvement with Nginx, Redis Session Cache, Memcached, OpCache, Ngx_pagespeed, and Magento Cache Storage Management. I can help much more with Nginx redirects and conf files--I gave up Apache years ago. Sorry I couldn't be of more help.

              1 Reply Last reply Reply Quote 0
              • 1 / 1
              1 out of 6
              • First post
                1/6
                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

              • Ashcastle

                URL structure - Page Path vs No Page Path

                We are currently re building our URL structure for eccomerce websites. We have seen a lot of site removing the page path on product pages e.g. https://www.theiconic.co.nz/liberty-beach-blossom-shirt-680193.html versus what would normally be https://www.theiconic.co.nz/womens-clothing-tops/liberty-beach-blossom-shirt-680193.html Should we be removing the site page path for a product page to keep the url shorter or should we keep it? I can see that we would loose the hierarchy juice to a product page but not sure what is the right thing to do.

                Intermediate & Advanced SEO | Aug 11, 2018, 11:15 AM | Ashcastle
                0
              • KenSchaefer

                No Index thousands of thin content pages?

                Hello all! I'm working on a site that features a service marketed to community leaders that allows the citizens of that community log 311 type issues such as potholes, broken streetlights, etc.  The "marketing" front of the site is 10-12 pages of content to be optimized for the community leader searchers however, as you can imagine there are thousands and thousands of pages of one or two line complaints such as, "There is a pothole on Main St. and 3rd." These complaint pages are not about the service, and I'm thinking not helpful to my end goal of gaining awareness of the service through search for the community leaders.  Community leaders are searching for "311 request service", not "potholes on main street". Should all of these "complaint" pages be NOINDEX'd?   What if there are a number of quality links pointing to the complaint pages?  Do I have to worry about losing Domain Authority if I do NOINDEX them? Thanks for any input. Ken

                Intermediate & Advanced SEO | Feb 11, 2018, 9:03 AM | KenSchaefer
                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
              • allianzireland

                Case Sensitive URLs, Duplicate Content & Link Rel Canonical

                I have a site where URLs are case sensitive. In some cases the lowercase URL is being indexed and in others the mixed case URL is being indexed. This is leading to duplicate content issues on the site. The site is using link rel canonical to specify a preferred URL in some cases however there is no consistency whether the URLs are lowercase or mixed case. On some pages the link rel canonical tag points to the lowercase URL, on others it points to the mixed case URL. Ideally I'd like to update all link rel canonical tags and internal links throughout the site to use the lowercase URL however I'm apprehensive! My question is as follows: If I where to specify the lowercase URL across the site in addition to updating internal links to use lowercase URLs, could this have a negative impact where the mixed case URL is the one currently indexed? Hope this makes sense! Dave

                Intermediate & Advanced SEO | Mar 25, 2015, 2:28 PM | allianzireland
                0
              • BobAnderson

                Tabs and duplicate content?

                We own this site http://www.discountstickerprinting.co.uk/ and just a little concerned as I right clicked open in new tab on the tab content section and it went to a new page For example if you right click on the price tab and click open in new tab you will end up with the url
                http://www.discountstickerprinting.co.uk/#tabThree Does this mean that our content is being duplicated onto another page? If so what should I do?

                Intermediate & Advanced SEO | Nov 25, 2013, 11:55 AM | BobAnderson
                0
              • sbaylor

                Artist Bios on Multiple Pages: Duplicate Content or not?

                I am currently working on an eComm site for a company that sells art prints. On each print's page, there is a bio about the artist followed by a couple of paragraphs about the print. My concern is that some artists have hundreds of prints on this site, and the bio is reprinted on every page,which makes sense from a usability standpoint, but I am concerned that it will trigger a duplicate content penalty from Google. Some people are trying to convince me that Google won't penalize for this content, since the intent is not to game the SERPs. However, I'm not confident that this isn't being penalized already, or that it won't be in the near future. Because it is just a section of text that is duplicated, but the rest of the text on each page is original, I can't use the rel=canonical tag. I've thought about putting each artist bio into a graphic, but that is a huge undertaking, and not the most elegant solution. Could I put the bio on a separate page with only the artist's info and then place that data on each print page using an <iframe>and then put a noindex,nofollow in the robots.txt file?</p> <p>Is there a better solution?  Is this effort even necessary?</p> <p>Thoughts?</p></iframe>

                Intermediate & Advanced SEO | Apr 11, 2013, 7:07 PM | sbaylor
                0
              • YNWA

                Duplicate Content on Press Release?

                Hi, We recently held a charity night in store. And had a few local celebs turn up etc... We created a press release to send out to various media outlets, within the press release were hyperlinks to our site and links on certain keywords to specific brands on our site. My question is, should we be sending a different press release to each outlet to stop the duplicate content thing, or is sending the same release out to everyone ok? We will be sending approx 20 of these out, some going online and some not. So far had one local paper website, a massive football website and a local magazine site. All pretty much same content and a few pics. Any help, hints or tips on how to go about this if I am going to be sending out to a load of other sites/blogs? Cheers

                Intermediate & Advanced SEO | Oct 14, 2012, 9:09 AM | YNWA
                0
              • Peter264

                NOINDEX listing pages: Page 2, Page 3... etc?

                Would it be beneficial to NOINDEX category listing pages except for the first page.  For example on this site: http://flyawaysimulation.com/downloads/101/fsx-missions/ Has lots of pages such as Page 2, Page 3, Page 4... etc: http://www.google.com/search?q=site%3Aflyawaysimulation.com+fsx+missions Would there be any SEO benefit of NOINDEX on these pages?  Of course, FOLLOW is default, so links would still be followed and juice applied. Your thoughts and suggestions are much appreciated.

                Intermediate & Advanced SEO | Dec 6, 2011, 3:18 PM | Peter264
                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.