不确定Google的抓取方式如何将此网址https://www.tonergreen.com.my/HP-CF213A-131A-Magenta-Printer-Toner-Cartridge-Value-Pack-2X重定向到错误的网址。我使用自定义主题的Opencart,如何解决这个问题?我担心这会影响页面seo排名。
答案 0 :(得分:2)
我可以确认Googlebot看到了与访问者相同的行为。
您尝试将Google http
版本(而不是https
)版本作为Googlebot提取。当我对curl执行相同操作时,您的服务器会将我重定向到https网站上的index.php
。
curl --head http://www.tonergreen.com.my/HP-CF213A-131A-Magenta-Printer-Toner-Cartridge-Value-Pack-2X
HTTP/1.1 302 Found
Location: https://www.tonergreen.com.my/index.php?_route_=HP-CF213A-131A-Magenta-Printer-Toner-Cartridge-Value-Pack-2X
当我获取https页面时,我得到标准的200 OK响应:
curl --head https://www.tonergreen.com.my/HP-CF213A-131A-Magenta-Printer-Toner-Cartridge-Value-Pack-2X
HTTP/1.1 200 OK
您的服务器配置错误,这不是Google的错误。
答案 1 :(得分:1)
Googlebot抓取工具不会出错。
您的问题与您尝试的不同。例如,您实际上是在尝试查看:
http://www.tonergreen.com.my/HP-CF213A-131A-Magenta-Printer-Toner-Cartridge-Value-Pack-2X
您正在尝试查看非https 页面,并且正在重定向到 https 。
这不太可能与主题有任何关系。
更有可能是因为您的电子商务软件或某种http到https重定向相关的内容。