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.

      What is your Brand Authority?
      Moz

      What is your Brand Authority?

      Check yours now
    • 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. Digital Marketing
    3. Web Design
    4. Missing trailing slash in URL on subpages resulting in Moz PA of 1

    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.

    Missing trailing slash in URL on subpages resulting in Moz PA of 1

    Web Design
    2
    19
    3536
    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.
    • serverleap
      serverleap last edited by

      Even here in moz community I am noticing it. Is it really a factor to have an ending slash on the page? Does it make a difference? Our website has a homepage PA of 63, DA of 56 but all of our sub-pages are just 1 and they have been up for 4 months.

      1 Reply Last reply Reply Quote 1
      • serverleap
        serverleap @BlueprintMarketing last edited by

        The redirect checker website is excellent. Great find!

        1 Reply Last reply Reply Quote 1
        • BlueprintMarketing
          BlueprintMarketing @serverleap last edited by

          Hope this helps,

          Please see: https://github.com/blueprintmrk/htaccess

          &

          https://github.com/blueprintmrk/htaccess#redirect-using-redirectmatch

          Removing "/."  from .PHP URLs "win-win"

          Alias “Clean” URLs

          This snippet lets you use “clean” URLs -- those without a PHP extension, e.g. example.com/users instead ofexample.com/users.php.

          RewriteEngine On
          RewriteCond %{SCRIPT_FILENAME} !-d
          RewriteRule ^([^.]+)$ $1.php [NC,L]
          

          Remove Trailing Slash

          This snippet will redirect paths ending in slashes to their non-slash-terminated counterparts (except for actual directories), e.g. http://www.example.com/blog/ to http://www.example.com/blog That is important for SEO since it’s recommended to have a canonical URL for every page.

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

          Force HTTPS

          RewriteEngine on
          RewriteCond %{HTTPS} !on
          RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
          
          # Note: It’s also recommended to enable HTTP Strict Transport Security (HSTS)
          # on your HTTPS website to help prevent man-in-the-middle attacks.
          # See https://developer.mozilla.org/en-US/docs/Web/Security/HTTP_strict_transport_security
           <ifmodule mod_headers.c="">Header always set Strict-Transport-Security "max-age=31536000; includeSubDomains"</ifmodule> 
          

          Force HTTPS Behind a Proxy

          Useful if you have a proxy in front of your server performing TLS termination.

          RewriteCond %{HTTP:X-Forwarded-Proto} !https
          RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
          

          PS

          checkout

          https://www.nginx.com/products/ they are great!

          Tom

          Alias “Clean” URLs

          This snippet lets you use “clean” URLs -- those without a PHP extension, e.g. example.com/users instead ofexample.com/users.php.

          RewriteEngine On
          RewriteCond %{SCRIPT_FILENAME} !-d
          RewriteRule ^([^.]+)$ $1.php [NC,L]
          
          1 Reply Last reply Reply Quote 0
          • BlueprintMarketing
            BlueprintMarketing @serverleap last edited by

            <code class="language-htaccess" style="padding: 2px 6px; border: 0px; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; margin: 0px; border-radius: 3px; text-shadow: #ffffff 0px 1px; word-break: normal; word-wrap: normal; tab-size: 4; background-image: initial; background-attachment: initial; background-color: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;">Glad I can help 
            Try useing this to check it  
            
            http://www.redirect-checker.org/index.php </code>
            

            `#removes trailing slash if not a directory RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.+)/$ /$1 [R=301,L]

            or
            https://css-tricks.com/snippets/htaccess/remove-file-extention-from-urls/

            Take the / off the end of this
            https://regex101.com/r/oK8xL9/3 like this` ^((?:\w+/\w+)+)$

            Seach & replace might be needed

            <code class="language-htaccess" style="padding: 2px 6px; border: 0px; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; margin: 0px; border-radius: 3px; text-shadow: #ffffff 0px 1px; word-break: normal; word-wrap: normal; tab-size: 4; background-image: initial; background-attachment: initial; background-color: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;">Hope that helps,
            Tom</code>
            

            obO0B3d.png

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

              Brilliant!

              Thank you so much Thomas!!! I will see what I can do about cleaning this all up!

              I believe I have located it the issue. The redirects are occurring after a base rewrite rule:

              Rewrite URLs to / from .html. SEO friendly. Added by David Turner 12/26/15

              RewriteBase /

              Rewrite requests for index.php to directory to avoid 500 errors when added to paths. Added by David Turner 12/30/15

              RewriteCond %{THE_REQUEST} ^./index.php
              RewriteRule ^(.
              )index.php$ /$1 [R=301,L]

              remove the .html extension

              RewriteCond %{THE_REQUEST} ^GET\ (.).html\ HTTP
              RewriteRule (.
              ).html$ $1 [R=301]

              remove index and reference the directory

              RewriteRule (.*)/index$ $1/ [R=301]

              remove trailing slash if not a directory

              RewriteCond %{REQUEST_FILENAME} !-d
              RewriteCond %{REQUEST_URI} /$
              RewriteRule (.*)/ $1 [R=301]

              forward request to html file, but don't redirect (bot friendly)

              RewriteCond %{REQUEST_FILENAME}.html -f
              RewriteCond %{REQUEST_URI} !/$
              RewriteRule (.*) $1.html [L]

              Moving the 301s above these and cleaning these up a bit should restore the 301 redirects properly and regain Moz PA.

              BlueprintMarketing 2 Replies Last reply Reply Quote 1
              • BlueprintMarketing
                BlueprintMarketing last edited by

                Found it your non-https .php URL has backlinks & you are 301  redirecting it to the "/" URL.

                After that redirects to the non-/. Thus creating a redirect chain

                You need to redirect the non-HTTPS version of the site/URL  to the non-/ version of the site.  This will give you the domain and page authority that you are missing.

                I confirmed the back links using majestic.com

                Result

                http://www.ultrawebsitehosting.com/hosting-dedicated.php backlinks 
                301 Moved Permanently
                https://www.ultrawebhosting.com/dedicated-servers/
                301 Moved Permanently
                https://www.ultrawebhosting.com/dedicated-servers lost PA when redirected so many times. 
                200 OK

                HTTP Headers

                http://www.ultrawebsitehosting.com/hosting-dedicated.php


                301 Moved Permanently

                | Status: | 301 Moved Permanently |
                | Code: | 301 |
                | Server: | UltraSpeed Hosting by UltraWebHosting.com |
                | Date: | Sun, 03 Apr 2016 23:42:41 GMT |
                | Content-Type: | text/html; charset=iso-8859-1 |
                | Content-Length: | 258 |
                | Connection: | close |
                | Location: | https://www.ultrawebhosting.com/dedicated-servers/ |

                https://www.ultrawebhosting.com/dedicated-servers/


                301 Moved Permanently

                | Status: | 301 Moved Permanently |
                | Code: | 301 |
                | Server: | UltraSpeed Hosting by UltraWebHosting.com |
                | Date: | Sun, 03 Apr 2016 23:42:47 GMT |
                | Content-Type: | text/html; charset=iso-8859-1 |
                | Content-Length: | 257 |
                | Connection: | close |
                | Location: | https://www.ultrawebhosting.com/dedicated-servers |
                | X-Cache: | HIT from Backend |

                https://www.ultrawebhosting.com/dedicated-servers


                200 OK

                | Status: | 200 OK |
                | Code: | 200 |
                | Server: | UltraSpeed Hosting by UltraWebHosting.com |
                | Date: | Sun, 03 Apr 2016 23:42:48 GMT |
                | Content-Type: | text/html |
                | Content-Length: | 40741 |
                | Connection: | close |
                | Vary: | Accept-Encoding |
                | Last-Modified: | Fri, 01 Apr 2016 02:03:57 GMT |
                | Access-Control-Allow-Origin: | * |
                | X-Cache: | HIT from Backend |
                | Accept-Ranges: | bytes |

                Features

                This Redirect Checker supports several features like:

                • · Select different User Agents like
                     · Desktop-Browsers (Chrome, Internet Explorer, Safari, Firefox,...)
                     · Mobile Devices (IPad, Iphone, Android, Windows Phone, Kindle, Nokia...
                     · Search Engine Bots (GoogleBot, Google Mobile Bot, Yandex, BingBot, Baidu, Yahoo Slurp, Naver,...
                • · checking 302 and 301 redirects
                • · supports & checks https redirects
                • · checks meta refresh redirects
                • · analysis of common javascript redirects
                • · check and show redirect chains
                • · check http headers like Status Code, X-Robots-Tag, Rel Canonical Header Tag "Link:"
                1 Reply Last reply Reply Quote 1
                • BlueprintMarketing
                  BlueprintMarketing @serverleap last edited by

                  I did not show what the PA was when I dropped the /

                  its 0 but when I add it is PA 28 see & try it.

                  Video of what I'm saying http://cl.ly/faXF

                  1 Reply Last reply Reply Quote 1
                  • BlueprintMarketing
                    BlueprintMarketing @serverleap last edited by

                    The 301 has to point to the / it shows PA

                    I'm about to grab dinner when I get back I will do it deep crawl your site and I'll find out the problem for you because it's definitely not a hard issue to figure out and I will dedicate some time to find out.

                    1 Reply Last reply Reply Quote 0
                    • serverleap
                      serverleap @BlueprintMarketing last edited by

                      The 301 redirect has existed for 4 months and a day. Why has it not assumed PR with Moz?

                      BlueprintMarketing 2 Replies Last reply Reply Quote 0
                      • BlueprintMarketing
                        BlueprintMarketing @serverleap last edited by

                        It's because there are back links pointing to the URLs that you redirected to dedicated servers for instance. The others have no back links therefore they do not have any page rank.

                        serverleap 1 Reply Last reply Reply Quote 0
                        • serverleap
                          serverleap @BlueprintMarketing last edited by

                          The original question is if it is a factor for the trialing slash to not exist as I am seeing Moz PRs of 1 on these pages after four months.

                          I appreciate all the rewrites but this is all common knowledge to me.

                          BlueprintMarketing 1 Reply Last reply Reply Quote 0
                          • BlueprintMarketing
                            BlueprintMarketing @serverleap last edited by

                            Was not able to fix the problem? If not you may want to force a / with a /?$  that way it will only be forced if needed.

                            Hope that helps, Tom

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

                              Hello Thomas,

                              Thank you for your time.

                              Redirect 301 /hosting-dedicated.php https://www.ultrawebhosting.com/dedicated-servers

                              has been set since 01/02/16 via .htaccess

                              I have removed the duplicate access-control as one was arbitrating font extensions and the other everything.

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

                                Try //Rewrite to www

                                Options +FollowSymLinks

                                RewriteEngine on

                                RewriteCond %{HTTP_HOST} ^ultrawebhosting.com[nc]

                                RewriteRule ^(.*)$ http://www.ultrawebhosting.com/$1 [r=301,nc]

                                //301 Redirect Old File

                                Redirect 301 .php /

                                See http://www.askapache.info//2.3/mod/mod_alias.html#redirectmatch

                                Sorry for all the duplicate stuff everything posts that way is annoying sorry about that. Nevertheless, you have to remove the PHP from your site. And redirect it correctly.

                                Let me know if that helps,

                                See below

                                |

                                Purpose

                                |

                                Example formatting

                                Include an entire directory but nothing beneath it

                                |

                                http://www.yourdomain.com/shop/

                                ^/shop/?$

                                Include all subdirectories

                                |

                                http://www.yourdomain.com/shop/*

                                ^/shop/.*

                                Include a single file

                                |

                                http://www.yourdomain.com/shop.php

                                ^/shop.php

                                Include any file of a specific type

                                |

                                ^/shop/.*.php – any php file

                                |

                                1 Reply Last reply Reply Quote 0
                                • BlueprintMarketing
                                  BlueprintMarketing @serverleap last edited by

                                  Look at this http://cl.ly/faXF

                                  https://moz.com/researchtools/ose/comparisons?site=https%3A%2F%2Fwww.ultrawebhosting.com%2Fdedicated-servers

                                  compare with

                                  https://moz.com/researchtools/ose/comparisons?site=https%3A%2F%2Fwww.ultrawebhosting.com%2Fhosting-dedicated.php

                                  It is still showing up with .php

                                  https://www.ultrawebhosting.com/hosting-dedicated.php needs to 301 to

                                  https://www.ultrawebhosting.com/dedicated-servers/

                                  Its the .php &  different link that has back links to it that is not properly pointing to it. Check

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

                                    You have 2

                                    Access-Control-Allow-Origin: *

                                    Access-Control-Allow-Origin: *

                                    Server: UltraSpeed Hosting by UltraWebHosting.com

                                    Date: Sun, 03 Apr 2016 08:06:06 GMT

                                    Content-Type: text/html

                                    Content-Length: 34133

                                    Connection: keep-alive

                                    Vary: Accept-Encoding

                                    Last-Modified: Sat, 26 Mar 2016 05:37:53 GMT

                                    Access-Control-Allow-Origin: *

                                    Access-Control-Allow-Origin: *

                                    X-Cache: HIT from Backend

                                    Accept-Ranges: bytes

                                    Intro to HTTP

                                    Access-Control-Allow-Origin: *

                                    Access-Control-Allow-Origin: *

                                    1 Reply Last reply Reply Quote 0
                                    • BlueprintMarketing
                                      BlueprintMarketing @serverleap last edited by

                                      thank you for providing me with that URL I will take a look right now

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

                                        Unfortunately this does not quite answer the question. The structure is by design but I am having my second thoughts after reviewing Moz and seeing this occurrence. Why are all sub-directories which do not end with / have a moz trust of 1? This even occurs here in the community forum. When the DA is 56 and the pages have been around for four months and are all linked from the homepage shouldn't they have a PA? Is the lack of a trailing slash a factor?

                                        https://www.ultrawebhosting.com

                                        Ex:
                                        https://www.ultrawebhosting.com/about
                                        https://www.ultrawebhosting.com/dedicated-servers

                                        BlueprintMarketing 2 Replies Last reply Reply Quote 0
                                        • BlueprintMarketing
                                          BlueprintMarketing last edited by

                                          Are your subpages subdomains? Or subfolders? I'm going to assume they are subfolders.

                                          If you're domain authority changes because of your page, that would be the only thing that would make me think you're talking about a subdomain.

                                          PA 63 & DA 56 your site will be crawled quickly because it has decent domain authority just because your homepage has high page authority does not mean the rest of the site will.

                                          It is not unusual for a brand-new page to have little page authority you can check if your forward slash "/" is being forced use screaming frog, redirect mapper, or https://varvy.com/tools/redirects/

                                          You can then force a "/"  or prevent one depending on what you find. Using regex

                                          Name: Redirect my contact page
                                          Domain: www.domain.com
                                          Source: ^/old-path/contact-us/?$
                                          Destination: /new-path/contact-us/
                                          Redirect type: 301 Permanent

                                          • This Redirect Rule will match a URL of http://www.domain.com/old-path/contact-us -or- http://www.domain.com/old-path/contact-us/
                                          • The variation is because of the Regex Syntax “/?$”
                                          • The Question Mark “?” makes the Trailing slash Optional
                                          • It will also only match the Source if it Starts with a “/” (note the carrot “^” ), or ends with either “s” or “/” (note the ending “$” )

                                          https://wpengine.com/support/regex/

                                          http://stackoverflow.com/questions/16657152/matching-a-forward-slash-with-a-regex

                                          This depends on your server, and what language are using so, I strongly suggest you use tool to verify your changes before making them.

                                          https://regex101.com/r/oK8xL9/1

                                          http://www.regexpal.com/

                                          I hope this helps,

                                          Tom

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

                                          • CamiloSC

                                            Website Redesign - What to do with old 301 URLs?

                                            My current site is on wordpress. We are currently designing a new wordpress site, with the same URLs. Our current approach is to go into the server, delete the current website files and ad the new website files. My current site has old urls which are 301 redirected to current urls. Here is my question.  In the current redesign process, do i need to create pages for old the 301 redirected urls so that we do not lose them in the launch of the new site? or is the 301 command currently existing outside of our server so this does not matter? Thank you in advance.

                                            Web Design | | CamiloSC
                                            0
                                          • vivekrathore

                                            Interlinking using Dynamic URLs Versus Static URLs

                                            Hi Guys, Could you kindly help us in choosing best approach out of mentioned below 2 cases. Case. 1 -We are using: We interlink our static pages(www.abc.com/jobs-in-chennai) through footer, navigation & by showing related searches. Self referential Canonical tags have been implemented. Case. 2 -We plan to use: We interlink our Dynamic pages(www.abc.com/jobs-in-chennai?source=footer) through footer, navigation & by showing related searches. Canonical tags have been implemented on dynamic urls pointing to corresponding static urls Query 1. Which one is better & expected to improve rankings. Query 2. Will shifting to Case 2 negatively affect our existing rankings or traffic. Regards

                                            Web Design | | vivekrathore
                                            0
                                          • netviper

                                            Question Mark In URL??

                                            So I am looking at a site for a client, and I think I already have my answer, but wanted to check with you guys. First off the site is in FLASH and HTML.  I told the client to dump the flash site, but she isn't willing right now. So the URLS are generated like this. Flash: http://www.mysite.com/#/page/7ca2/wedding-pricing/ HTML: http://www.mysite.com/?/page/7ca2/wedding-pricing/ checking the site in Google with a site:mysite, none of the interior pages are indexed at all. So that is telling me that Google is pretty much ignoring everything past the # or ?. Is that correct? My recommendation is to dump the flash site and redo the URLS in a SEo friendly format.

                                            Web Design | | netviper
                                            0
                                          • Will_Craig

                                            Is it better to redirect a url or set up a landing page for a new site?

                                            Hi, One of our clients has got a new website but is still getting quite a lot of traffic to her old site which has a page authority of 30 on the home page and has about 20 external backlinks. It's on a different hosting package so a different C block but I was wondering if anyone could advise if it would be better to simply redirect this page to the new site or set up a landing page on this domain simply saying "Site has moved, you can now find us here..." sort of idea. Any advice would be much appreciated Thanks

                                            Web Design | | Will_Craig
                                            0
                                          • DROIDSTERS

                                            Yes or No for Ampersand "&" in SEO URLs

                                            Hi Mozzers I would like to know how crawlers see the ampersand (& or &) in your URLs and if Google frown upon this or not? As far as I know they purely recognise this as "and" is this correct and is there any best practice for implementing this, as I know a lot of people complained before about & in links and that it is better to use it as &, but this is not on links, this is on URLs. Reason for this is that we looking to move onto an ASP.Net MVC framework (any suggestions for a different framework are welcome, we still just planning out future development) and in order to make use of the filter options we have on our site we need a parameter to indicate the difference on a routing level (routing sends to controller, controller sends to model, model sends to controller and controller sends to view < this is pattern of a request that comes in on the framework we will be using). I already have -'s and /'s in the URLs (which is for my SEO structuring) so these syntax can't be used for identifying filters the user clicks or uses to define their search as it will create a complete mess in the system. Now we looking at & to say; OK, when a user lands on /accommodation and they selects De Kelders (which is a destination in our area) the page will be /accommodation/de-kelders on this page they can define their search further to say they are looking for 5 star accommodation and it should be close to the beach, this is where the routing needs some guidance and we looking to have it as follow: /accommodation/de-kelders/5-star&close-to-the-beach. Now, does the "&" get identified by search engines on a URL level as "and" and does this cause any issues with crawling or indexation or would it be best to look at another solution? Thanks, Chris Captivate

                                            Web Design | | DROIDSTERS
                                            0
                                          • petewinter

                                            Missing Meta Description Tag - Wordpress Tag

                                            I am going through my crawl diagonostics issues and I have lots of "Missing Meta Description Tags". However when I look at the url's they are Wordpress Tags, which do not have a meta description. Shall I just ignore these errors or should I find a way to add a meta description? Is it important?

                                            Web Design | | petewinter
                                            0
                                          • hfranz

                                            Should I Remove URL extentions for SEO?

                                            We are having a developer design our website with Magento. I noticed the main pages such as About Us have no file extention in the URL. But the product pages have a .html file extention. I was once told to remove the file extentions. Are there benefits to removing the .html file extension and if so, is there a way we can do this using Magento?

                                            Web Design | | hfranz
                                            0
                                          • wdziedzic

                                            The use of foreign characters and capital letters in URL's?

                                            Hello all, We have 4 language domains for our website, and a number of our Spanish landing pages are written using Spanish characters - most notably: ñ and ó. We have done our research around the web and realised that many of the top competitors for keywords such as Diseño Web (web design) and Aplicaión iPhone (iphone application) DO NOT use these special chacracters in their URL structure. Here is an example of our URL's EX:  http://www.twago.es/expert/Diseño-Web/Diseño-Web However when I simply copy paste a URL that contains a special character it is automatically translated and encoded. EX: http://www.twago.es/expert/Aplicación-iPhone/Aplicación-iPhone (When written out long had it appears: http://www.twago.es/expert/Aplicación-iPhone/Aplicación-iPhone My first question is, seeing how the overwhelming majority of website URL's DO NOT contain special characters (and even for Spanish/German characters these are simply written using the standard English latin alphabet) is there a negative effect on our SEO rankings/efforts because we are using special characters? When we write anchor text for backlinks to these pages we USE the special characteristics in the anchor text (so does most other competitors). Does the anchor text have to exactly I know most webbrowsers can understand the special characters, especially when returning search results to users that either type the special characters within their search query (or not). But we seem to think that if we were doing the right thing, then why does everyone else do it differently? My second question is the same, but focusing on the use of Capital letters in our URL structure. NOTE: When we do a broken link check with some link tools (such as xenu) the URL's that contain the special characters in Spanish are marked as "broken". Is this a related issue? Any help anyone could give us would be greatly appreciated! Thanks, David from twago

                                            Web Design | | wdziedzic
                                            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
                                          • 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.