Google图片可以选择根据许可证过滤图像。
我网站上的每个图片都有一个详细信息页面,我在其中有以下链接来表示许可证:
<a rel="license" href="http://creativecommons.org/licenses/by/4.0/deed.en_US" target="_blank">CC-BY</a>
它是Creative Commons - Choose a License的示例代码的修改版本。
但是,当我选择许可过滤器时,我看到自我添加此代码以来Google已编入索引的图片。
答案 0 :(得分:5)
你需要将它包含在带有about属性的div中。以下是Google提供的示例:
<div about="image.jpg">
<img src="image.jpg" alt="" />
<a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/">Creative Commons Attribution Share-Alike 3.0</a>
</div>
所以在你的情况下:
<div about="image.jpg">
<img src="image.jpg" alt="" />
<a rel="license" href="http://creativecommons.org/licenses/by/4.0/deed.en_US" target="_blank">CC-BY</a>
</div>
来源:https://www.youtube.com/watch?v=quyhasVn2jw,http://googlesystem.blogspot.com/2009/08/simple-way-to-specify-image-licenses.html