SEO Mox reporting all pages & titles as duplicate, but this is not the case.
-
HI, I am confused . This week SEOMoz is reporting that all my pages and pages titles are duplicate. This is not the case. I have added geo meta tags to each page - could this be causing the duplicate page content condition? I have no theory about the title duplicate condition. I have uploaded pdfs of these seomoz reports here: http://www.2shared.com/document/JAgS2Ni9/Issue_-Duplicate_Page_Content.html http://www.2shared.com/document/gyXcMsoP/Issue-Duplicate_Page_Title-.html Help please. thanks.
-
Rel canonical is definitely NOT the preferred way to handle this kind of situation, IMO, Zach. Best practice is to run the 301 redirect to give the Search Engines (and users!) the clearest message as to the Fully Qualified Domain.
This isn't a matter of the 2 URLs needing to exist, which is when you use rel canonical. The second variation serves no possible useful purpose, so should be redirected in order to get rid of it altogether.( In my experience, rel canonical also doesn't seem to reliably pass page influence the way 301s do.)
For example, by doing the redirect, the URL will always appear in the address bar as the www version, so if someone copies that address, they'll always end up using the canonical FQDN.
That said, Richard, you can also use Google Webmaster Tools to tell the Search Engines that you want your www version to be considered canonical. It's just one more way of signalling to them.
Once this is working, you're going to want to be very careful to always use the FQDN yuorself - ie always write links using the full www.weddingdancelessons.co.uk, whether on your own site or when you're getting links back to yourself.
-
That new rule won't catch all the related subpages, Richard.
Here's the standard version I use - give it a shot, then test it.
RewriteEngine On
RewriteCond %{HTTP_HOST} ^weddingdancelessons.com.au$
RewriteRule (.*) http://www.weddingdancelessons.com.au$1 [R=301,L]Paul
-
yes thanks.
I already had:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^weddingdancelessons.com.au$
RewriteRule ^/?$ "http://www.weddingdancelessons.com.au/" [R=301,L]in my .htaccess file but these errors as per the ref you provided. So I am not sure if this is working.
Would
Redirect 301 http://weddingdancelessons.com.au http://www.weddingdancelessons.com.au
solve the problem ?
-
I think you should continue looking at doing a 301 redirect instead.
You can use the canonical tag, but you should do so in cases where you intend to have different URLs for one main page (e.g. www.example.com/blue-widget.html, www.example.com/widgets/blue-widget.html). Here is a another question regarding canonicals where Ryan Kent provides a good explanation for this.
You can learn more about 301 redirecting here. Yoast also provides some information for how to do it here.
-
Thanks Paul,
so would this be the correct syntax in line 1 of .htacess file?
Redirect 301 http://weddingdancelessons.com.au http://www.weddingdancelessons.com.au
Thanks.
-
We literally just wrote on the same error I ran through screaming frog, and there is definitely duplicate content because of non-canonical URLs.
-
Hello Richard, I just ran your site through a tool called screaming frog, which instantly crawls your site and allows me to view errors such as duplicate titles and the like. Here is what happened, when Screaming Frog, and SEOmoz crawls your site, they see both URLS: http://www.weddingdancelessons.com.au/index.html http://weddingdancelessons.com.au/index.html Both have the same title: "Wedding Dance Lessons Sydney | Dancing Lessons to couples to learn their first dance and to look confident at their wedding." Even though to humans there is little deliniaton between the two, it is exteremely important to search engines. The solution to this is to use the rel="cannonical" tag check out this blog post http://www.seomoz.org/blog/complete-guide-to-rel-canonical-how-to-and-why-not, it's dated but still relevant to your case. Once all of your pages have that tag, your SEO issues should resolve themselves Please let me know if you have any more questions Zach
-
As near as I can tell, Richard, the crawl is reporting the issue because you don't have canonicalization of the primary domain of the website. Big words to mean that your site is resolving at both www.weddingdancelessons.com.au and weddingdancelessons.com.au (without the www)
Search Engines and therefore Mozbot will see these as two different sets of pagesx, therefore duplicating each other.
If you look down the list of pages reported, you'll see that some are listed with the www and some without.
What should happen is that one of those two versions is 301-redirected to the other. Best practice is usually to redirect the non-www to the www version, although it can be worth double-checking which version has more incoming links/page authority before making the final choice.
Since this looks like it's just happened, it may be that there have been changes made to the .htaccess file that have messed up previous settings, or it may be that the crawler just caught the dupes this time.
Paul
Got a burning SEO question?
Subscribe to Moz Pro to gain full access to Q&A, answer questions, and ask your own.
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.
Related Questions
-
Understanding Redirects and Canonical Tags in SEO: A Complex Case
Hi everyone, nothing serious here, i'm just playing around doing my experiments 🙂
Technical SEO | | chueneke
but if any1 of you guys understand this chaos and what was the issue here, i'd appreciate if you try to explain it to me. I had a page "Linkaufbau" on my website at https://chriseo.de/linkaufbau. My .htaccess file contains only basic SEO stuff: # removed ".html" using htaccess RewriteCond %{THE_REQUEST} ^GET\ (.*)\.html\ HTTP RewriteRule (.*)\.html$ $1 [R=301,L] # internally added .html if necessary RewriteCond %{REQUEST_FILENAME}.html -f RewriteCond %{REQUEST_URI} !/$ RewriteRule (.*) $1\.html [L] # removed "index" from directory index pages RewriteRule (.*)/index$ $1/ [R=301,L] # removed trailing "/" if not a directory RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_URI} /$ RewriteRule (.*)/ $1 [R=301,L] # Here’s the first redirect: RedirectPermanent /index / My first three questions: Why do I need this rule? Why must this rule be at the top? Why isn't this handled by mod_rewrite? Now to the interesting part: I moved the Linkaufbau page to the SEO folder: https://chriseo.de/seo/linkaufbau and set up the redirect accordingly: RedirectPermanent /linkaufbau /seo/linkaufbau.html I deleted the old /linkaufbau page. I requested indexing for /seo/linkaufbau in the Google Search Console. Once the page was indexed, I set a canonical to the old URL: <link rel="canonical" href="https://chriseo.de/linkaufbau"> Then I resubmitted the sitemap and requested indexing for /seo/linkaufbau again, even though it was already indexed. Due to the canonical tag, the page quickly disappeared. I then requested indexing for /linkaufbau and /linkaufbau.html in GSC (the old, deleted page). After two days, both URLs were back in the serps:: https://chriseo.de/linkaufbau https://chriseo.de/linkaufbau.html this is the new page /seo/linkaufbau
b14ee095-5c03-40d5-b7fc-57d47cf66e3b-grafik.png This is the old page /linkaufbau
242d5bfd-af7c-4bed-9887-c12a29837d77-grafik.png Both URLs are now in the search results and all rankings are significantly better than before for keywords like: organic linkbuilding linkaufbau kosten linkaufbau service natürlicher linkaufbau hochwertiger linkaufbau organische backlinks linkaufbau strategie linkaufbau agentur Interestingly, both URLs (with and without .html) redirect to the new URL https://chriseo.de/seo/linkaufbau, which in turn has a canonical pointing to https://chriseo.de/linkaufbau (without .html). In the SERPs, when https://chriseo.de/linkaufbau is shown, my new, updated snippet is displayed. When /linkaufbau.html is shown, it displays the old, deleted page that had already disappeared from the index. I have now removed the canonical tag. I don't fully understand the process of what happened and why. If anyone has any ideas, I would be very grateful. Best regards,
Chris0 -
Landing page video scripts - duplicate content concerns
we are planning to create a series of short (<30 sec) videos for landing pages for our clients PPC campaigns. Since our clients all offer the same services (except in different geographical regions of the county) - we were planning to use the SAME script ( approx 85 words) with only the clients business name changed. Our question is : Would these videos be identified as 'duplicate content' - if we are only planning to use the videos on landing pages and only for PPC? -in other words are we in any danger of any kind of consequences from the engines for repeating script text across a series of landing pages featured only at PPC campaigns?
Technical SEO | | Steve_J0 -
How can I provide titles and descriptive text for our list of USPs on the same page optimized both for usability and SEO
I am rebuilding our website together with an agency and I am stuck with the following problem: We have a page which will provide the visitor with a quick and convincing impression why he should chose our enterprise. On this page we want to show our USPs (Unique Selling Points) each with a title and a short description. Now my preferred way of presenting those USPs would be of a list of the titles (which permits to see all USPs without having to read a lot of text) where each title can be clicked to expand the description (in case you want to know more about this specific USP) and if you click on another title the previously clicked title description will collapse and the new description expand and so on (similar to this page: http://www.berlin-city-immobilien.de/38.html - I'm talking about the list in the middle of the page starting with the headline "Dabei profitieren Sie von folgenden Vorteilen"). Since I also want to use these descriptions as on page SEO-texts I checked whether Google might not index or at least value "click to expand content" less than plain text in the body of the page and I stumbled over this article: https://www.seroundtable.com/google-hidden-tab-content-seo-19489.html. According to this article Google will definitely discount the descriptions on my page. Does anyone have an idea how to solve this problem? Either by suggesting a different way to show titles and descriptions on the page or maybe by suggesting a workaround so Google will not treat the descriptions as "click to expand text". Thank you already in advance for your input.
Technical SEO | | Benni
Ben0 -
Woocommerce Duplicate Page Content Issue
Hi, I'm receiving a duplicate content error. It says that this url: https://kidsinministry.org/childrens-ministry-curriculum/?option=com_content&task=view&id=20&Itemid=41 is a duplicate of this: http://kidsinministry.org/childrens-ministry-curriculum I'm using wordpress, woocommerce, and not really sure how to even address this. I tried adding this to .htaccess but it didn't redirect the url: 301 Redirects Redirect 301 https://kidsinministry.org/childrens-ministry-curriculum/?option=com_content&task=view&id=20&Itemid=41 http://kidsinministry.org/childrens-ministry-curriculum/ Anyone have any ideas? Thanks!
Technical SEO | | a_toohill0 -
Duplicate page titles
Hi, I have a Joomla 2.5 site and I use categoryblogs. So I have a page with "reviews". All the reviews are shown on this page and there are about 15 pages of it. In my SEOMoz crawl result I get 71 errors ! about "duplicate titles". How can I diminish this? I don't know how to show all the reviews in a proper way other than what I have accomplished with categoryblog. Patrick
Technical SEO | | paddydaddy0 -
Duplicate Title - Shopping Website
My website is showing with errors due to duplicate titles, these errors add up to over 150 errors. The problem is a lot of my products are similar, just in different lengths, colors etc. For example
Technical SEO | | adelemaree
http://www.ugg.org.au/en/classic-candy-short-australia-ugg-boots/48-classic-candy-short-australia-ugg-boots-blue.html
http://www.ugg.org.au/en/classic-candy-button-short-australia-ugg-boots/31-classic-candy-button-short-chocolate.html
http://www.ugg.org.au/en/classic-candy-button-short-australia-ugg-boots/28-classic-candy-button-short-black.html How can I avoid this error without having to merge all my products and colors into one page? As that would make my catalogue look too small! Thanks in advance0 -
Tags causing Duplicate page content?
I was looking through the 'Duplicate Page Content' and Too Many On-Page Link' errors and they all seem to be linked to the 'Tags' on my blog pages. Is this really a problem and if so how should I be using tags properly to get the best SEO rewards?
Technical SEO | | zapprabbit1 -
Paginated Home Page Duplicates on Wordpress Sites
A number of my websites created on WP are displaying duplicate home pages with these types of urls. http://www.example.com/page/10/ http://www.example.com/page/11/ http://www.example.com/page/12/ I found these duplicates using the site:search command. Basically, put in any number and the Home Page opens. With the above mentioned url structure. Any idea on why they are created, how they can be stopped and what kind of an impact they would have in terms of SEO and the penalty that comes with duplicate content.
Technical SEO | | AsadMemon1