我的网站上有一些大图片。它们在默认情况下会调整大小,但是当您单击它们时,它们会在灯箱中打开并变大。我想让搜索引擎知道原始(更大)的图像,而不是源代码中包含的较小的调整大小图像。有没有办法让他们索引更大的图像?
答案 0 :(得分:1)
您无法决定谷歌选择索引的内容(但您可以使用thepiyush13答案让谷歌更容易),但您可以告诉它不要编入索引。 把它放在你的robot.txt文件中:
<target name = "run" depends="compile">
<property name="input" value="report" />
<java classname="assn4">
<classpath>
<pathelement path="."/>
</classpath>
<arg line="${input}"/>
</java>
</target>
来源:https://support.google.com/webmasters/answer/35308?hl=en (适用于其他搜索引擎)
答案 1 :(得分:0)
图片站点地图是Google的方式
您可以使用站点地图的Google图片扩展程序向Google提供有关您网页上可用图片的更多信息。图片站点地图信息可帮助Google发现我们可能无法找到的图片(例如您的网站使用JavaScript代码访问的图片),并允许您在网站上指明您希望Google抓取并编制索引的图片。
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:image="http://www.google.com/schemas/sitemap-image/1.1">
<url>
<loc>http://example.com/sample.html</loc>
<image:image>
<image:loc>http://example.com/image.jpg</image:loc>
</image:image>
<image:image>
<image:loc>http://example.com/photo.jpg</image:loc>
</image:image>
</url>
</urlset>
来源:https://support.google.com/webmasters/answer/178636?hl=en