8

HTML 5 谷歌发布者链接验证错误:

    Error: Bad value publisher for attribute rel on element link: Not an absolute IRI. The string publisher is not a registered keyword or absolute URL.

From line 13, column 1; to line 13, column 75

</script>↩&lt;link href="https://plus.google.com/my publisher id" rel="publisher"> ↩&lt;/he

Syntax of absolute IRI:
    An absolute URL. For example: http://example.org/hello, but not /hello. Spaces should be escaped as %20. 
4

2 回答 2

4

你试试这个:

<link rel="author" href="https://plus.google.com/PUBLISERID?rel=publisher">

通过 HTML5 验证。

于 2013-02-15T00:43:20.917 回答
0

如果您正在使用:

<link rel="author" href="https://plus.google.com/PUBLISERID?rel=publisher" />

Google 找不到发布者链接!

更好的解决方案是:

<a href="https://plus.google.com/PUBID?rel=publisher" rel="publisher">Google Page</a>

通过 HTML5 验证!

于 2013-11-08T13:20:48.560 回答