$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>Google Crawling Non-Existent @2x Image URLs (Created by Plugin or Theme?)|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

Google Crawling Non-Existent @2x Image URLs (Created by Plugin or Theme?)

matteradmin7PV0评论
Closed. This question is off-topic. It is not currently accepting answers.

Questions that are too localized (such as syntax errors, code with restricted access, hacked sites, hosting or support issues) are not in scope. See how do I ask a good question?

Closed 2 days ago.

Improve this question

I’ve run into a frustrating issue with Googlebot crawling a large number of non-existent @2x image URLs like this one:

/[email protected]

These pics don't exist on my server, but Google is still trying to crawl them, and it shows a ton of 404s and inflating my crawl budget.

Here’s some info:

I'm using a custom Genesis child theme (I didn't update or change anything recently).

My active plugins (that my research shows could be causing the issue):

  • EWWW Image Optimizer

  • Jetpack Boost

  • WP-Optimize

I have WebP conversion enabled in EWWW.

Some of the URLs like the @2x ones are appearing in Search Console crawl stats and are flagged under "Crawl request: Not found".

When inspecting the affected pages in Search Console, I get:

"Page is not indexed: URL is unknown to Google. No referring sitemaps detected"

I did some research and found out I could disallow those images. So I added this to my robots.txt file:

User-agent: *
Disallow: /*@2x.jpg$
Disallow: /*@2x.png$

I need help figuring out what code or plugin is creating those @2x URLs and how I can stop it.

Also, is it okay to disallow @2x via my robots.txt file or is there a better way to do this?

Thanks so much in advance.

Post a comment

comment list (0)

  1. No comments so far