我在发布链接http://www.georgia-tours.eu/之前添加到我的网站https://plus.google.com/b/114199965403815819875/+GeorgiatoursEuge/以链接网站与google +个人资料,链接似乎工作正常,但在Google网站管理员工具中开始出现这样的人群错误404
http://www.georgia-tours.eu/merabs-guesthouse-in-ambrolauri/%E2%80%9Dhttps:/plus.google.com/b/114199965403815819875/+GeorgiatoursEuge/%E2%80%9D/
如何解决这个问题?
答案 0 :(得分:1)
%E2%80%9D
解码为”
,这是一个丰富的引用(通常在Microsoft Word中找到),与"
(ASCII引用)不同。 HTML标记不像标准引号那样识别丰富的引号,它们会导致问题。
在您复制的源代码中将富引号更改为标准引号。您还应该修正Google+网址。它应该是https://plus.google.com/114199965403815819875
,其中没有b
,没有虚荣名称,或/posts
跟随它。
总而言之,这个:
<a href=”https://plus.google.com/b/114199965403815819875/+GeorgiatoursEuge/posts” rel=”publisher” />
应该成为这个:
<a href="https://plus.google.com/114199965403815819875" rel="publisher" />
源代码中的任何地方。
答案 1 :(得分:-1)
实际上,代码本身是错误的。
它不应该是一个href
它应该如何在括号内:
link href =&#34; https://plus.google.com/+GeorgiatoursEuge/"的rel =&#34;出版者&#34; /
参考:
http://www.vervesearch.com/blog/how-to-implement-the-relpublisher-google-authorship-mark-up/