I have run SEO tool for my website, it showed that I have a duplicate title tag and meta description tag, both are in "domain.com/" and "/index.html" , they are the same file. How do I use Canonical Link to remove the duplicate tags ? Please help. Thanks.
相关问题
- should rel-canonical also include protocol (http/h
- Fetch as Google Webmaster tools
- Will dynamically generated content via Javascript
- When will my site's CSS affect my search engin
- Microdata/Schema.org/SEO: How to properly set a Co
相关文章
- Dynamic robots.txt
- When does Googlebot execute javascript?
- Pretty Paths in Rails
- xpath in =importXML() for extracting meta descript
- Does the user agent string have to be exactly as i
- Short URL or long URL for SEO
- SEO-friendly URLs in CodeIgniter without the use o
- Is using a select list for navigation SEO Friendly
if it's showing up just in SEO software don't worry about it, Google's smart enough to know it's one page
You're coming across a classic duplicate-content issue.
The quickest way to get around this is to edit your
index.html
page markup and include a canonical link within the<head>
of your page.Try this:
What this does is tell the search engines that the two URLs (the domain root, and
/index.html
) are the same page and that it should only index thedomain.com/
version.This won't stop people being able to still access the same page via
/index.html
and justdomain.com/
, but it should remove the index.html version from the search engine indexes fairly quickly.One very important thing to bear in mind: you need to ensure that you don't drop this
link
into a common/shared page template, ensure it only appears in yourindex.html
file - otherwise you'll end up telling the search engines that all pages should be considered duplicates of the home page!Note: although this will resolve the issue for you, it may well take some time before the changes are reflected in your SEO software (or Google Webmasters). You have to wait until the search engines next index your website and recognize the changes, which could be up-to several weeks.