url - Duplicate page from Google Webmaster Tools -
all of website page url contains non-english characters seo purpose, in browsers, characters encode , not looks good.
for reason, wrote javascript code, when user click on link, non-english characters removed , add canonical
link tag head of page google use link main addressing.
change url:
http://www.example.com/game/new/جدید
to this, when user click:
http://www.example.com/game/new
and add canonical
link tag in head of 2 page:
<link rel="canonical" href="http://www.example.com/game/new/جدید" />
but after 2 month , 300 index google, in "html improvements" of google webmaster tools, write "duplicate title tags" pages.
i can't remove non-english character url or redirect pages.
how solve problem?
i suggest think url rewriting in general: if have configured website serve ugly urls
for seo purpose
only, might think , remove them anyway. if need non-english characters may visitors understand urls, keep them. if don't need them, drop them.
to solve problem can try following:
first make sure know urls downloading them search console: hit "download table" above url table.
next, make sure can identify pair of urls in example http://www.example.com/game/new/جدید
, http://www.example.com/game/new
on http://www.example.com/game/new/جدید
implement canonical link element this:
<link rel="canonical" href="http://www.example.com/game/new/جدید">
on http://www.example.com/game/new
same:
<link rel="canonical" href="http://www.example.com/game/new/جدید">
make sure links on pages point canonical urls instead of english-only ones. in sitemaps use canonical urls well.
remember: takes time google recognize canonicalization , correct errors in search console.
it has shown best practise implement self referential canonical link element on each page default. protects generating duplicates parameters or capitalization issues.
third: make sure don't supply further duplicates example serving urls , without trailing slashes or serving both http
, https
. these common duplicate issues. problem may have different reasons. further, not implement canonical links dynamically via javascript or similar.
if duplicate title issues not resolve may have further issues either making google ignore canonicals or serving duplicate urls.
Comments
Post a Comment