{"id":8967,"date":"2026-03-20T13:14:52","date_gmt":"2026-03-20T13:14:52","guid":{"rendered":"https:\/\/ideastomakemoneytoday.online\/?p=8967"},"modified":"2026-03-20T13:14:53","modified_gmt":"2026-03-20T13:14:53","slug":"charge-limiting-ai-crawler-bots-with-modsecurity","status":"publish","type":"post","link":"https:\/\/ideastomakemoneytoday.online\/?p=8967","title":{"rendered":"Charge Limiting AI Crawler Bots with ModSecurity"},"content":{"rendered":"<p> <br \/>\n<\/p>\n<div>\n<figure class=\"wp-block-image size-large\"><\/figure>\n<div class=\"wp-block-post-excerpt\">\n<p class=\"wp-block-post-excerpt__excerpt\">AI coaching bots from OpenAI, Anthropic, Amazon, and a dozen different firms at the moment are hitting manufacturing internet servers with the identical aggression as a DDoS assault, and robots.txt isn\u2019t stopping them. This information walks via how InMotion\u2019s methods crew makes use of ModSecurity to implement per-bot charge limiting on the server stage, with out chopping off your website\u2019s\u2026 <\/p>\n<\/div>\n<p>            <meta http-equiv=\"Content-Type\" content=\"text\/html; charset=utf-8\"\/><\/p>\n<div id=\"wpjoli-jtoc--cp-content-wrapper\">\n<style><![CDATA[\n        :root {\n        --jtoc-progress-bar-color: #c52228;\n--jtoc-bullet-border-radius: 6px;\n--jtoc-bullet-width: 6px;\n--jtoc-bullet-height: 6px;\n--jtoc-bullet-background-color: #2c2227;        }\n                    .wpj-jtoc.--jtoc-theme-basic-light.--jtoc-has-custom-styles {\n        --jtoc-toc-box-shadow: 0 0 16px #c2c2c280;\n--jtoc-header-padding: 10px;\n--jtoc-title-color: #2c2227;\n--jtoc-body-padding: 30px 30px 20px 30px;\n--jtoc-body-background-color: #ffffff;\n--jtoc-link-color: #2245c4;\n--jtoc-link-color-hover: #193391;        }    ]]><\/style>\n<p>            <!-- jtoc progress bar widget --><\/p>\n<\/div>\n<h2 class=\"wp-block-heading joli-heading jtoc-heading\" id=\"the-problem-ai-bots-that-dont-follow-the-rules\"><strong>The Drawback: AI Bots That Don\u2019t Comply with the Guidelines<\/strong><\/h2>\n<p><strong>robots.txt<\/strong> has been the de facto settlement between web sites and internet crawlers for many years. A directive like Crawl-delay: 10 tells compliant bots to attend 10 seconds between requests. Google provides you a method to configure crawl charge via <a rel=\"nofollow\" target=\"_blank\" href=\"https:\/\/www.inmotionhosting.com\/support\/website\/google-tools\/setting-a-crawl-delay-in-google-webmaster-tools\/\">Google Search Console<\/a>. Conventional search crawlers have operated inside these boundaries lengthy sufficient that almost all sysadmins by no means thought a lot about them.<\/p>\n<p><span id=\"more-82582\"\/><\/p>\n<p>LLM coaching crawlers are a distinct story.<\/p>\n<p>Beginning in 2024, InMotion\u2019s methods administration groups started seeing a sample of unusually heavy site visitors throughout shared and devoted infrastructure. The supply wasn\u2019t a single bot working wild. It was a number of bots, every operated by a distinct AI firm, concurrently crawling the identical servers with no delay between requests and no respect for Crawl-delay directives. None of them coordinated with one another. None of them wanted to. The mixed load of GPTBot, ClaudeBot, Amazonbot, and their friends hitting the identical server concurrently produces useful resource exhaustion that appears functionally equivalent to an unintentional distributed denial-of-service assault.<\/p>\n<p><em>That surprises numerous web site homeowners who assume <\/em><strong><em>robots.txt<\/em><\/strong><em> is binding. It isn\u2019t. It\u2019s a conference, and these bots aren\u2019t observing it.<\/em><\/p>\n<h2 class=\"wp-block-heading joli-heading jtoc-heading\" id=\"two-options-one-clear-tradeoff\"><strong>Two Choices, One Clear Tradeoff<\/strong><\/h2>\n<p>The blunt instrument is a full block by way of .htaccess. You may <a rel=\"nofollow\" target=\"_blank\" href=\"https:\/\/www.inmotionhosting.com\/support\/website\/block-unwanted-users-from-your-site-using-htaccess\/#multi-agent\">deny entry by Person-Agent<\/a> and the bots cease hitting your server completely. Drawback solved, besides it isn\u2019t: your website additionally disappears from AI-driven discovery methods. For companies that need to seem in AI-generated solutions or LLM-powered search options, blocking coaching crawlers completely carries an actual long-term value.<\/p>\n<p>Charge limiting is the higher path. You sluggish the bots right down to a tempo your server can take in. They nonetheless index your content material. You continue to keep visibility. And when a bot refuses to respect the speed restrict you\u2019ve set, you block that particular request fairly than the bot completely.<\/p>\n<h2 class=\"wp-block-heading joli-heading jtoc-heading\" id=\"how-modsecurity-rate-limiting-works\"><strong>How ModSecurity Charge Limiting Works<\/strong><\/h2>\n<p><a rel=\"nofollow\" target=\"_blank\" href=\"https:\/\/github.com\/owasp-modsecurity\/ModSecurity\">ModSecurity<\/a> is an open-source Internet Software Firewall that operates inside Apache or Nginx, inspecting HTTP site visitors in actual time. It\u2019s the identical software that blocks SQL injection makes an attempt and cross-site scripting assaults on correctly hardened servers. What makes it helpful right here is its potential to trace request frequency by Person-Agent and deny requests that exceed an outlined threshold.<\/p>\n<p>The method works in two steps:<\/p>\n<ul class=\"wp-block-list\">\n<li>Establish the incoming request by Person-Agent string and increment a per-host counter.<\/li>\n<li>If that counter exceeds the allowed restrict earlier than it expires, deny the request with a 429 Too Many Requests response and set a Retry-After header.<\/li>\n<\/ul>\n<p>That Retry-After header issues. It explicitly tells the bot how lengthy to attend earlier than its subsequent request. A well-behaved crawler will honor it. One which doesn\u2019t get blocked on its subsequent try.<\/p>\n<h2 class=\"wp-block-heading joli-heading jtoc-heading\" id=\"the-modsecurity-rules\"><strong>The ModSecurity Guidelines<\/strong><\/h2>\n<p>Beneath are the rate-limiting guidelines InMotion Internet hosting\u2019s methods crew developed and presently deploys. Every rule set targets a particular bot by Person-Agent and enforces a most of 1 request per 3 seconds per hostname.<\/p>\n<h3 class=\"wp-block-heading joli-heading jtoc-heading\" id=\"gptbot-openai\"><strong>GPTBot (OpenAI)<\/strong><\/h3>\n<div class=\"wp-block-kevinbatdorf-code-block-pro\" data-code-block-pro-font-family=\"Code-Pro-JetBrains-Mono\" style=\"font-size:.875rem;font-family:Code-Pro-JetBrains-Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;line-height:1.25rem;--cbp-tab-width:2;tab-size:var(--cbp-tab-width, 2)\"><span role=\"button\" tabindex=\"0\" style=\"color:#e1e4e8;display:none\" aria-label=\"Copy\" class=\"code-block-pro-copy-button\"><\/p>\n<pre class=\"code-block-pro-copy-button-pre\" aria-hidden=\"true\"><textarea class=\"code-block-pro-copy-button-textarea\" tabindex=\"-1\" aria-hidden=\"true\" readonly=\"readonly\"># Restrict GPTBot hits by consumer agent to at least one hit per 3 secondsSecRule REQUEST_HEADERS:Person-Agent \"@pm GPTBot\" \u00a0 \u00a0 \"id:13075,section:2,nolog,move,setuid:%{request_headers.host},\u00a0 \u00a0 setvar:consumer.ratelimit_gptbot=+1,expirevar:consumer.ratelimit_gptbot=3\"SecRule USER:RATELIMIT_GPTBOT \"@gt 1\" \u00a0 \u00a0 \"chain,id:13076,section:2,deny,standing:429,setenv:RATELIMITED_GPTBOT,\u00a0 \u00a0 log,msg:'RATELIMITED GPTBOT'\"\u00a0 \u00a0 SecRule REQUEST_HEADERS:Person-Agent \"@pm GPTBot\"Header at all times set Retry-After \"3\" env=RATELIMITED_GPTBOTErrorDocument 429 \"Too Many Requests\"<\/textarea><\/pre>\n<p><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" style=\"width:24px;height:24px\" fill=\"none\" viewbox=\"0 0 24 24\" stroke=\"currentColor\" stroke-width=\"2\"><path class=\"with-check\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\"\/><path class=\"without-check\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\"\/><\/svg><\/span><\/p>\n<pre class=\"shiki github-dark\" style=\"background-color: #24292e\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #E1E4E8\"># Restrict GPTBot hits by consumer agent to at least one hit per <\/span><span style=\"color: #79B8FF\">3<\/span><span style=\"color: #E1E4E8\"> secondsSecRule <\/span><span style=\"color: #B392F0\">REQUEST_HEADERS<\/span><span style=\"color: #E1E4E8\">:Person<\/span><span style=\"color: #F97583\">-<\/span><span style=\"color: #E1E4E8\">Agent <\/span><span style=\"color: #9ECBFF\">\"@pm GPTBot\"<\/span><span style=\"color: #E1E4E8\"> \u00a0 \u00a0 <\/span><span style=\"color: #9ECBFF\">\"id:13075,section:2,nolog,move,setuid:%{request_headers.host},<\/span><span style=\"color: #79B8FF\">\u00a0<\/span><span style=\"color: #9ECBFF\"> \u00a0 setvar:consumer.ratelimit_gptbot=+1,expirevar:consumer.ratelimit_gptbot=3\"<\/span><span style=\"color: #E1E4E8\">SecRule <\/span><span style=\"color: #B392F0\">USER<\/span><span style=\"color: #E1E4E8\">:<\/span><span style=\"color: #79B8FF\">RATELIMIT_GPTBOT<\/span><span style=\"color: #E1E4E8\"> <\/span><span style=\"color: #9ECBFF\">\"@gt 1\"<\/span><span style=\"color: #E1E4E8\"> \u00a0 \u00a0 <\/span><span style=\"color: #9ECBFF\">\"chain,id:13076,section:2,deny,standing:429,setenv:RATELIMITED_GPTBOT,<\/span><span style=\"color: #79B8FF\">\u00a0<\/span><span style=\"color: #9ECBFF\"> \u00a0 log,msg:'RATELIMITED GPTBOT'\"<\/span><span style=\"color: #E1E4E8\">\u00a0 \u00a0 SecRule <\/span><span style=\"color: #B392F0\">REQUEST_HEADERS<\/span><span style=\"color: #E1E4E8\">:Person<\/span><span style=\"color: #F97583\">-<\/span><span style=\"color: #E1E4E8\">Agent <\/span><span style=\"color: #9ECBFF\">\"@pm GPTBot\"<\/span><span style=\"color: #E1E4E8\">Header at all times set Retry<\/span><span style=\"color: #F97583\">-<\/span><span style=\"color: #E1E4E8\">After <\/span><span style=\"color: #9ECBFF\">\"3\"<\/span><span style=\"color: #E1E4E8\"> env<\/span><span style=\"color: #F97583\">=<\/span><span style=\"color: #E1E4E8\">RATELIMITED_GPTBOTErrorDocument <\/span><span style=\"color: #79B8FF\">429<\/span><span style=\"color: #E1E4E8\"> <\/span><span style=\"color: #9ECBFF\">\"Too Many Requests\"<\/span><\/span><\/code><\/pre>\n<\/div>\n<h3 class=\"wp-block-heading joli-heading jtoc-heading\" id=\"claudebot-anthropic\"><strong>ClaudeBot (Anthropic)<\/strong><\/h3>\n<div class=\"wp-block-kevinbatdorf-code-block-pro\" data-code-block-pro-font-family=\"Code-Pro-JetBrains-Mono\" style=\"font-size:.875rem;font-family:Code-Pro-JetBrains-Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;line-height:1.25rem;--cbp-tab-width:2;tab-size:var(--cbp-tab-width, 2)\"><span role=\"button\" tabindex=\"0\" style=\"color:#e1e4e8;display:none\" aria-label=\"Copy\" class=\"code-block-pro-copy-button\"><\/p>\n<pre class=\"code-block-pro-copy-button-pre\" aria-hidden=\"true\"><textarea class=\"code-block-pro-copy-button-textarea\" tabindex=\"-1\" aria-hidden=\"true\" readonly=\"readonly\"># Restrict ClaudeBot hits by consumer agent to at least one hit per 3 secondsSecRule REQUEST_HEADERS:Person-Agent \"@pm ClaudeBot\" \u00a0 \u00a0 \"id:13077,section:2,nolog,move,setuid:%{request_headers.host},\u00a0 \u00a0 setvar:consumer.ratelimit_claudebot=+1,expirevar:consumer.ratelimit_claudebot=3\"SecRule USER:RATELIMIT_CLAUDEBOT \"@gt 1\" \u00a0 \u00a0 \"chain,id:13078,section:2,deny,standing:429,setenv:RATELIMITED_CLAUDEBOT,\u00a0 \u00a0 log,msg:'RATELIMITED CLAUDEBOT'\"\u00a0 \u00a0 SecRule REQUEST_HEADERS:Person-Agent \"@pm ClaudeBot\"Header at all times set Retry-After \"3\" env=RATELIMITED_CLAUDEBOTErrorDocument 429 \"Too Many Requests\"<\/textarea><\/pre>\n<p><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" style=\"width:24px;height:24px\" fill=\"none\" viewbox=\"0 0 24 24\" stroke=\"currentColor\" stroke-width=\"2\"><path class=\"with-check\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\"\/><path class=\"without-check\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\"\/><\/svg><\/span><\/p>\n<pre class=\"shiki github-dark\" style=\"background-color: #24292e\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #E1E4E8\"># Restrict ClaudeBot hits by consumer agent to at least one hit per <\/span><span style=\"color: #79B8FF\">3<\/span><span style=\"color: #E1E4E8\"> secondsSecRule <\/span><span style=\"color: #B392F0\">REQUEST_HEADERS<\/span><span style=\"color: #E1E4E8\">:Person<\/span><span style=\"color: #F97583\">-<\/span><span style=\"color: #E1E4E8\">Agent <\/span><span style=\"color: #9ECBFF\">\"@pm ClaudeBot\"<\/span><span style=\"color: #E1E4E8\"> \u00a0 \u00a0 <\/span><span style=\"color: #9ECBFF\">\"id:13077,section:2,nolog,move,setuid:%{request_headers.host},<\/span><span style=\"color: #79B8FF\">\u00a0<\/span><span style=\"color: #9ECBFF\"> \u00a0 setvar:consumer.ratelimit_claudebot=+1,expirevar:consumer.ratelimit_claudebot=3\"<\/span><span style=\"color: #E1E4E8\">SecRule <\/span><span style=\"color: #B392F0\">USER<\/span><span style=\"color: #E1E4E8\">:<\/span><span style=\"color: #79B8FF\">RATELIMIT_CLAUDEBOT<\/span><span style=\"color: #E1E4E8\"> <\/span><span style=\"color: #9ECBFF\">\"@gt 1\"<\/span><span style=\"color: #E1E4E8\"> \u00a0 \u00a0 <\/span><span style=\"color: #9ECBFF\">\"chain,id:13078,section:2,deny,standing:429,setenv:RATELIMITED_CLAUDEBOT,<\/span><span style=\"color: #79B8FF\">\u00a0<\/span><span style=\"color: #9ECBFF\"> \u00a0 log,msg:'RATELIMITED CLAUDEBOT'\"<\/span><span style=\"color: #E1E4E8\">\u00a0 \u00a0 SecRule <\/span><span style=\"color: #B392F0\">REQUEST_HEADERS<\/span><span style=\"color: #E1E4E8\">:Person<\/span><span style=\"color: #F97583\">-<\/span><span style=\"color: #E1E4E8\">Agent <\/span><span style=\"color: #9ECBFF\">\"@pm ClaudeBot\"<\/span><span style=\"color: #E1E4E8\">Header at all times set Retry<\/span><span style=\"color: #F97583\">-<\/span><span style=\"color: #E1E4E8\">After <\/span><span style=\"color: #9ECBFF\">\"3\"<\/span><span style=\"color: #E1E4E8\"> env<\/span><span style=\"color: #F97583\">=<\/span><span style=\"color: #E1E4E8\">RATELIMITED_CLAUDEBOTErrorDocument <\/span><span style=\"color: #79B8FF\">429<\/span><span style=\"color: #E1E4E8\"> <\/span><span style=\"color: #9ECBFF\">\"Too Many Requests\"<\/span><\/span><\/code><\/pre>\n<\/div>\n<h3 class=\"wp-block-heading joli-heading jtoc-heading\" id=\"amazonbot\"><strong>Amazonbot<\/strong><\/h3>\n<div class=\"wp-block-kevinbatdorf-code-block-pro\" data-code-block-pro-font-family=\"Code-Pro-JetBrains-Mono\" style=\"font-size:.875rem;font-family:Code-Pro-JetBrains-Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;line-height:1.25rem;--cbp-tab-width:2;tab-size:var(--cbp-tab-width, 2)\"><span role=\"button\" tabindex=\"0\" style=\"color:#e1e4e8;display:none\" aria-label=\"Copy\" class=\"code-block-pro-copy-button\"><\/p>\n<pre class=\"code-block-pro-copy-button-pre\" aria-hidden=\"true\"><textarea class=\"code-block-pro-copy-button-textarea\" tabindex=\"-1\" aria-hidden=\"true\" readonly=\"readonly\"># Restrict Amazonbot hits by consumer agent to at least one hit per 3 secondsSecRule REQUEST_HEADERS:Person-Agent \"@pm Amazonbot\" \u00a0 \u00a0 \"id:13079,section:2,nolog,move,setuid:%{request_headers.host},\u00a0 \u00a0 setvar:consumer.ratelimit_amazonbot=+1,expirevar:consumer.ratelimit_amazonbot=3\"SecRule USER:RATELIMIT_AMAZONBOT \"@gt 1\" \u00a0 \u00a0 \"chain,id:13080,section:2,deny,standing:429,setenv:RATELIMITED_AMAZONBOT,\u00a0 \u00a0 log,msg:'RATELIMITED AMAZONBOT'\"\u00a0 \u00a0 SecRule REQUEST_HEADERS:Person-Agent \"@pm Amazonbot\"Header at all times set Retry-After \"3\" env=RATELIMITED_AMAZONBOTErrorDocument 429 \"Too Many Requests\"<\/textarea><\/pre>\n<p><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" style=\"width:24px;height:24px\" fill=\"none\" viewbox=\"0 0 24 24\" stroke=\"currentColor\" stroke-width=\"2\"><path class=\"with-check\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\"\/><path class=\"without-check\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\"\/><\/svg><\/span><\/p>\n<pre class=\"shiki github-dark\" style=\"background-color: #24292e\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #E1E4E8\"># Restrict Amazonbot hits by consumer agent to at least one hit per <\/span><span style=\"color: #79B8FF\">3<\/span><span style=\"color: #E1E4E8\"> secondsSecRule <\/span><span style=\"color: #B392F0\">REQUEST_HEADERS<\/span><span style=\"color: #E1E4E8\">:Person<\/span><span style=\"color: #F97583\">-<\/span><span style=\"color: #E1E4E8\">Agent <\/span><span style=\"color: #9ECBFF\">\"@pm Amazonbot\"<\/span><span style=\"color: #E1E4E8\"> \u00a0 \u00a0 <\/span><span style=\"color: #9ECBFF\">\"id:13079,section:2,nolog,move,setuid:%{request_headers.host},<\/span><span style=\"color: #79B8FF\">\u00a0<\/span><span style=\"color: #9ECBFF\"> \u00a0 setvar:consumer.ratelimit_amazonbot=+1,expirevar:consumer.ratelimit_amazonbot=3\"<\/span><span style=\"color: #E1E4E8\">SecRule <\/span><span style=\"color: #B392F0\">USER<\/span><span style=\"color: #E1E4E8\">:<\/span><span style=\"color: #79B8FF\">RATELIMIT_AMAZONBOT<\/span><span style=\"color: #E1E4E8\"> <\/span><span style=\"color: #9ECBFF\">\"@gt 1\"<\/span><span style=\"color: #E1E4E8\"> \u00a0 \u00a0 <\/span><span style=\"color: #9ECBFF\">\"chain,id:13080,section:2,deny,standing:429,setenv:RATELIMITED_AMAZONBOT,<\/span><span style=\"color: #79B8FF\">\u00a0<\/span><span style=\"color: #9ECBFF\"> \u00a0 log,msg:'RATELIMITED AMAZONBOT'\"<\/span><span style=\"color: #E1E4E8\">\u00a0 \u00a0 SecRule <\/span><span style=\"color: #B392F0\">REQUEST_HEADERS<\/span><span style=\"color: #E1E4E8\">:Person<\/span><span style=\"color: #F97583\">-<\/span><span style=\"color: #E1E4E8\">Agent <\/span><span style=\"color: #9ECBFF\">\"@pm Amazonbot\"<\/span><span style=\"color: #E1E4E8\">Header at all times set Retry<\/span><span style=\"color: #F97583\">-<\/span><span style=\"color: #E1E4E8\">After <\/span><span style=\"color: #9ECBFF\">\"3\"<\/span><span style=\"color: #E1E4E8\"> env<\/span><span style=\"color: #F97583\">=<\/span><span style=\"color: #E1E4E8\">RATELIMITED_AMAZONBOTErrorDocument <\/span><span style=\"color: #79B8FF\">429<\/span><span style=\"color: #E1E4E8\"> <\/span><span style=\"color: #9ECBFF\">\"Too Many Requests\"<\/span><\/span><\/code><\/pre>\n<\/div>\n<h2 class=\"wp-block-heading joli-heading jtoc-heading\" id=\"adapting-the-rules-for-other-bots\"><strong>Adapting the Guidelines for Different Bots<\/strong><\/h2>\n<p>The construction is similar for each bot. So as to add protection for a brand new crawler, copy any rule set and make two adjustments:<\/p>\n<ul class=\"wp-block-list\">\n<li>Change the Person-Agent string (e.g., GPTBot) with the brand new bot\u2019s identifier.<\/li>\n<li>Assign distinctive id values and distinctive env variable names to keep away from conflicts with current guidelines.<\/li>\n<\/ul>\n<p>The id subject have to be distinctive throughout your total ModSecurity configuration. Should you\u2019re including these to an current ruleset, verify what IDs are already in use earlier than assigning new ones. Collisions trigger guidelines to fail silently.<\/p>\n<p>For reference, a rising checklist of recognized AI crawler Person-Agent strings contains Bytespider, CCBot, Google-Prolonged, Meta-ExternalAgent, and PerplexityBot, amongst others. The <a rel=\"nofollow\" target=\"_blank\" href=\"https:\/\/darkvisitors.com\/\">Darkish Guests mission<\/a> maintains a fairly present catalogue of recognized AI agent identifiers.<\/p>\n<h2 class=\"wp-block-heading joli-heading jtoc-heading\" id=\"what-happens-after-you-deploy\"><strong>What Occurs After You Deploy<\/strong><\/h2>\n<p>As soon as these guidelines are energetic, a bot that makes two requests to the identical hostname inside a 3-second window receives a 429 on the second request. The Retry-After: 3 header tells it to attend earlier than making an attempt once more.<\/p>\n<p>From there, conduct splits into two classes:<\/p>\n<p><strong>Bots that respect the header <\/strong>decelerate routinely. They proceed indexing your content material at a tempo your server can deal with. Sources are conserved, and your website stays accessible to the crawlers value caring about.<\/p>\n<p><strong>Bots that ignore the header <\/strong>preserve hitting the deny rule on each subsequent request till their inner retry logic kicks in or they transfer on. Both manner, they\u2019re consuming a fraction of the assets they might have with out charge limiting in place.<\/p>\n<p>You gained\u2019t repair the underlying downside of AI firms deploying aggressive crawlers with out consent. However you cease absorbing the price of their indexing operations in your {hardware}.<\/p>\n<h2 class=\"wp-block-heading joli-heading jtoc-heading\" id=\"prerequisites-and-where-to-apply-these-rules\"><strong>Conditions and The place to Apply These Guidelines<\/strong><\/h2>\n<p>These guidelines require ModSecurity to be put in and enabled in your server. On <a rel=\"nofollow\" target=\"_blank\" href=\"https:\/\/www.inmotionhosting.com\/dedicated-servers\">InMotion Internet hosting Devoted Servers<\/a> and <a rel=\"nofollow\" target=\"_blank\" href=\"https:\/\/www.inmotionhosting.com\/vps-hosting\">VPS plans<\/a>, ModSecurity is out there via cPanel\u2019s WHM interface underneath Safety Heart &gt; ModSecurity. The principles may be added as customized guidelines via WHM or instantly in your server\u2019s ModSecurity configuration listing.<\/p>\n<p>Should you\u2019re on a managed devoted server, InMotion Internet hosting\u2019s <a rel=\"nofollow\" target=\"_blank\" href=\"https:\/\/www.inmotionhosting.com\/support\/\">Superior Product Help crew<\/a> can help with customized ModSecurity rule deployment. Prospects with <a rel=\"nofollow\" target=\"_blank\" href=\"https:\/\/www.inmotionhosting.com\/premier-care\/\">Premier Care<\/a> have entry to InMotion Options for precisely this sort of customized server configuration work.<\/p>\n<p>Shared internet hosting environments don\u2019t assist customized ModSecurity guidelines on the account stage. If aggressive bot site visitors is an issue on shared internet hosting, the choices are restricted to .htaccess blocks or upgrading to a VPS or devoted server the place you might have full WAF configurability.<\/p>\n<h2 class=\"wp-block-heading joli-heading jtoc-heading\" id=\"a-note-on-robotstxt\"><strong>A Be aware on robots.txt<\/strong><\/h2>\n<p>None of this replaces a well-structured <strong>robots.txt<\/strong> file. Holding crawl-delay directives in place for compliant bots stays worthwhile, and explicitly itemizing AI crawlers you need to prohibit provides a documented sign of intent, even when some bots ignore it. The ModSecurity guidelines deal with enforcement for those that gained\u2019t self-regulate.<\/p>\n<p>robots.txt for bots that respect conventions; ModSecurity charge limiting for those that don\u2019t. The 2 layers work collectively.<\/p>\n<h2 class=\"wp-block-heading joli-heading jtoc-heading\" id=\"summary\"><strong>Abstract<\/strong><\/h2>\n<p>AI coaching crawlers don\u2019t observe <a rel=\"nofollow\" target=\"_blank\" href=\"https:\/\/www.inmotionhosting.com\/blog\/wordpress-seo\/\" type=\"post\" id=\"10322\">robots.txt<\/a> the way in which conventional search bots do, and the mixed load from a number of simultaneous indexing operations can degrade server efficiency for reliable site visitors. ModSecurity\u2019s Person-Agent-based charge limiting provides you server-side management over how ceaselessly these bots can request assets, with out requiring you to dam them from indexing your website completely.<\/p>\n<p>The principles are easy to deploy, lengthen to any bot by copying the template, and supply express signaling by way of Retry-After headers for crawlers which might be able to honoring them.<\/p>\n<p>Should you\u2019re seeing unexplained spikes in server load or HTTP request quantity that don\u2019t correlate with actual consumer site visitors, verify your entry logs for <a rel=\"nofollow\" target=\"_blank\" href=\"https:\/\/www.inmotionhosting.com\/blog\/ai-crawlers-slowing-down-your-website\/\" type=\"post\" id=\"78540\">AI crawler Person-Brokers<\/a> earlier than assuming you\u2019re coping with one thing extra complicated.<\/p>\n<\/p><\/div>\n<p><script id=\"facebook-meta-script-js-after\">\n!function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';n.queue=[];t=b.createElement(e);t.async=!0;t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window,document,'script','https:\/\/connect.facebook.net\/en_US\/fbevents.js');fbq('init','164237177383067');fbq('track','PageView')\n\/\/# sourceURL=facebook-meta-script-js-after\n<\/script><br \/>\n<br \/><\/p>\n","protected":false},"excerpt":{"rendered":"<p>AI coaching bots from OpenAI, Anthropic, Amazon, and a dozen different firms at the moment are hitting manufacturing internet servers with the identical aggression as a DDoS assault, and robots.txt isn\u2019t stopping them. This information walks via how InMotion\u2019s methods crew makes use of ModSecurity to implement per-bot charge limiting on the server stage, with [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":8969,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"fifu_image_url":"https:\/\/www.inmotionhosting.com\/blog\/wp-content\/uploads\/2026\/03\/Rate-Limiting-AI-Crawler-Bots-with-ModSecurity.png","fifu_image_alt":"","footnotes":""},"categories":[42],"tags":[3566,4925,4924,4926,1390],"class_list":["post-8967","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-oline-business","tag-bots","tag-crawler","tag-limiting","tag-modsecurity","tag-rate"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Charge Limiting AI Crawler Bots with ModSecurity - ideastomakemoneytoday<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/ideastomakemoneytoday.online\/?p=8967\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Charge Limiting AI Crawler Bots with ModSecurity - ideastomakemoneytoday\" \/>\n<meta property=\"og:description\" content=\"AI coaching bots from OpenAI, Anthropic, Amazon, and a dozen different firms at the moment are hitting manufacturing internet servers with the identical aggression as a DDoS assault, and robots.txt isn\u2019t stopping them. This information walks via how InMotion\u2019s methods crew makes use of ModSecurity to implement per-bot charge limiting on the server stage, with [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/ideastomakemoneytoday.online\/?p=8967\" \/>\n<meta property=\"og:site_name\" content=\"ideastomakemoneytoday\" \/>\n<meta property=\"article:published_time\" content=\"2026-03-20T13:14:52+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-03-20T13:14:53+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.inmotionhosting.com\/blog\/wp-content\/uploads\/2026\/03\/Rate-Limiting-AI-Crawler-Bots-with-ModSecurity.png\" \/><meta property=\"og:image\" content=\"https:\/\/www.inmotionhosting.com\/blog\/wp-content\/uploads\/2026\/03\/Rate-Limiting-AI-Crawler-Bots-with-ModSecurity.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"1024\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"g6pm6\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/www.inmotionhosting.com\/blog\/wp-content\/uploads\/2026\/03\/Rate-Limiting-AI-Crawler-Bots-with-ModSecurity.png\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"g6pm6\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/ideastomakemoneytoday.online\\\/?p=8967#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/ideastomakemoneytoday.online\\\/?p=8967\"},\"author\":{\"name\":\"g6pm6\",\"@id\":\"https:\\\/\\\/ideastomakemoneytoday.online\\\/#\\\/schema\\\/person\\\/eb9631f61bc5ab134298c1c4481b0cce\"},\"headline\":\"Charge Limiting AI Crawler Bots with ModSecurity\",\"datePublished\":\"2026-03-20T13:14:52+00:00\",\"dateModified\":\"2026-03-20T13:14:53+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/ideastomakemoneytoday.online\\\/?p=8967\"},\"wordCount\":1252,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/ideastomakemoneytoday.online\\\/?p=8967#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/i0.wp.com\\\/www.inmotionhosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/03\\\/Rate-Limiting-AI-Crawler-Bots-with-ModSecurity.png?ssl=1\",\"keywords\":[\"bots\",\"Crawler\",\"Limiting\",\"ModSecurity\",\"Rate\"],\"articleSection\":[\"Oline Business\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/ideastomakemoneytoday.online\\\/?p=8967#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/ideastomakemoneytoday.online\\\/?p=8967\",\"url\":\"https:\\\/\\\/ideastomakemoneytoday.online\\\/?p=8967\",\"name\":\"Charge Limiting AI Crawler Bots with ModSecurity - ideastomakemoneytoday\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/ideastomakemoneytoday.online\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/ideastomakemoneytoday.online\\\/?p=8967#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/ideastomakemoneytoday.online\\\/?p=8967#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/i0.wp.com\\\/www.inmotionhosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/03\\\/Rate-Limiting-AI-Crawler-Bots-with-ModSecurity.png?ssl=1\",\"datePublished\":\"2026-03-20T13:14:52+00:00\",\"dateModified\":\"2026-03-20T13:14:53+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/ideastomakemoneytoday.online\\\/#\\\/schema\\\/person\\\/eb9631f61bc5ab134298c1c4481b0cce\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/ideastomakemoneytoday.online\\\/?p=8967#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/ideastomakemoneytoday.online\\\/?p=8967\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/ideastomakemoneytoday.online\\\/?p=8967#primaryimage\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/www.inmotionhosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/03\\\/Rate-Limiting-AI-Crawler-Bots-with-ModSecurity.png?ssl=1\",\"contentUrl\":\"https:\\\/\\\/i0.wp.com\\\/www.inmotionhosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/03\\\/Rate-Limiting-AI-Crawler-Bots-with-ModSecurity.png?ssl=1\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/ideastomakemoneytoday.online\\\/?p=8967#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/ideastomakemoneytoday.online\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Charge Limiting AI Crawler Bots with ModSecurity\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/ideastomakemoneytoday.online\\\/#website\",\"url\":\"https:\\\/\\\/ideastomakemoneytoday.online\\\/\",\"name\":\"ideastomakemoneytoday\",\"description\":\"My WordPress Blog\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/ideastomakemoneytoday.online\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/ideastomakemoneytoday.online\\\/#\\\/schema\\\/person\\\/eb9631f61bc5ab134298c1c4481b0cce\",\"name\":\"g6pm6\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8269f4471ad6ee9d66fe62ec749f04d5e01348d5ec8dfe671fe8b3ce6b35de6f?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8269f4471ad6ee9d66fe62ec749f04d5e01348d5ec8dfe671fe8b3ce6b35de6f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8269f4471ad6ee9d66fe62ec749f04d5e01348d5ec8dfe671fe8b3ce6b35de6f?s=96&d=mm&r=g\",\"caption\":\"g6pm6\"},\"sameAs\":[\"https:\\\/\\\/ideastomakemoneytoday.online\"],\"url\":\"https:\\\/\\\/ideastomakemoneytoday.online\\\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Charge Limiting AI Crawler Bots with ModSecurity - ideastomakemoneytoday","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/ideastomakemoneytoday.online\/?p=8967","og_locale":"en_US","og_type":"article","og_title":"Charge Limiting AI Crawler Bots with ModSecurity - ideastomakemoneytoday","og_description":"AI coaching bots from OpenAI, Anthropic, Amazon, and a dozen different firms at the moment are hitting manufacturing internet servers with the identical aggression as a DDoS assault, and robots.txt isn\u2019t stopping them. This information walks via how InMotion\u2019s methods crew makes use of ModSecurity to implement per-bot charge limiting on the server stage, with [&hellip;]","og_url":"https:\/\/ideastomakemoneytoday.online\/?p=8967","og_site_name":"ideastomakemoneytoday","article_published_time":"2026-03-20T13:14:52+00:00","article_modified_time":"2026-03-20T13:14:53+00:00","og_image":[{"url":"https:\/\/www.inmotionhosting.com\/blog\/wp-content\/uploads\/2026\/03\/Rate-Limiting-AI-Crawler-Bots-with-ModSecurity.png","type":"","width":"","height":""},{"url":"https:\/\/www.inmotionhosting.com\/blog\/wp-content\/uploads\/2026\/03\/Rate-Limiting-AI-Crawler-Bots-with-ModSecurity.png","width":1024,"height":1024,"type":"image\/jpeg"}],"author":"g6pm6","twitter_card":"summary_large_image","twitter_image":"https:\/\/www.inmotionhosting.com\/blog\/wp-content\/uploads\/2026\/03\/Rate-Limiting-AI-Crawler-Bots-with-ModSecurity.png","twitter_misc":{"Written by":"g6pm6","Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/ideastomakemoneytoday.online\/?p=8967#article","isPartOf":{"@id":"https:\/\/ideastomakemoneytoday.online\/?p=8967"},"author":{"name":"g6pm6","@id":"https:\/\/ideastomakemoneytoday.online\/#\/schema\/person\/eb9631f61bc5ab134298c1c4481b0cce"},"headline":"Charge Limiting AI Crawler Bots with ModSecurity","datePublished":"2026-03-20T13:14:52+00:00","dateModified":"2026-03-20T13:14:53+00:00","mainEntityOfPage":{"@id":"https:\/\/ideastomakemoneytoday.online\/?p=8967"},"wordCount":1252,"commentCount":0,"image":{"@id":"https:\/\/ideastomakemoneytoday.online\/?p=8967#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/www.inmotionhosting.com\/blog\/wp-content\/uploads\/2026\/03\/Rate-Limiting-AI-Crawler-Bots-with-ModSecurity.png?ssl=1","keywords":["bots","Crawler","Limiting","ModSecurity","Rate"],"articleSection":["Oline Business"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/ideastomakemoneytoday.online\/?p=8967#respond"]}]},{"@type":"WebPage","@id":"https:\/\/ideastomakemoneytoday.online\/?p=8967","url":"https:\/\/ideastomakemoneytoday.online\/?p=8967","name":"Charge Limiting AI Crawler Bots with ModSecurity - ideastomakemoneytoday","isPartOf":{"@id":"https:\/\/ideastomakemoneytoday.online\/#website"},"primaryImageOfPage":{"@id":"https:\/\/ideastomakemoneytoday.online\/?p=8967#primaryimage"},"image":{"@id":"https:\/\/ideastomakemoneytoday.online\/?p=8967#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/www.inmotionhosting.com\/blog\/wp-content\/uploads\/2026\/03\/Rate-Limiting-AI-Crawler-Bots-with-ModSecurity.png?ssl=1","datePublished":"2026-03-20T13:14:52+00:00","dateModified":"2026-03-20T13:14:53+00:00","author":{"@id":"https:\/\/ideastomakemoneytoday.online\/#\/schema\/person\/eb9631f61bc5ab134298c1c4481b0cce"},"breadcrumb":{"@id":"https:\/\/ideastomakemoneytoday.online\/?p=8967#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/ideastomakemoneytoday.online\/?p=8967"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/ideastomakemoneytoday.online\/?p=8967#primaryimage","url":"https:\/\/i0.wp.com\/www.inmotionhosting.com\/blog\/wp-content\/uploads\/2026\/03\/Rate-Limiting-AI-Crawler-Bots-with-ModSecurity.png?ssl=1","contentUrl":"https:\/\/i0.wp.com\/www.inmotionhosting.com\/blog\/wp-content\/uploads\/2026\/03\/Rate-Limiting-AI-Crawler-Bots-with-ModSecurity.png?ssl=1"},{"@type":"BreadcrumbList","@id":"https:\/\/ideastomakemoneytoday.online\/?p=8967#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/ideastomakemoneytoday.online\/"},{"@type":"ListItem","position":2,"name":"Charge Limiting AI Crawler Bots with ModSecurity"}]},{"@type":"WebSite","@id":"https:\/\/ideastomakemoneytoday.online\/#website","url":"https:\/\/ideastomakemoneytoday.online\/","name":"ideastomakemoneytoday","description":"My WordPress Blog","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/ideastomakemoneytoday.online\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/ideastomakemoneytoday.online\/#\/schema\/person\/eb9631f61bc5ab134298c1c4481b0cce","name":"g6pm6","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/8269f4471ad6ee9d66fe62ec749f04d5e01348d5ec8dfe671fe8b3ce6b35de6f?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/8269f4471ad6ee9d66fe62ec749f04d5e01348d5ec8dfe671fe8b3ce6b35de6f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/8269f4471ad6ee9d66fe62ec749f04d5e01348d5ec8dfe671fe8b3ce6b35de6f?s=96&d=mm&r=g","caption":"g6pm6"},"sameAs":["https:\/\/ideastomakemoneytoday.online"],"url":"https:\/\/ideastomakemoneytoday.online\/?author=1"}]}},"_links":{"self":[{"href":"https:\/\/ideastomakemoneytoday.online\/index.php?rest_route=\/wp\/v2\/posts\/8967","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ideastomakemoneytoday.online\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/ideastomakemoneytoday.online\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/ideastomakemoneytoday.online\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/ideastomakemoneytoday.online\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=8967"}],"version-history":[{"count":1,"href":"https:\/\/ideastomakemoneytoday.online\/index.php?rest_route=\/wp\/v2\/posts\/8967\/revisions"}],"predecessor-version":[{"id":8968,"href":"https:\/\/ideastomakemoneytoday.online\/index.php?rest_route=\/wp\/v2\/posts\/8967\/revisions\/8968"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/ideastomakemoneytoday.online\/index.php?rest_route=\/wp\/v2\/media\/8969"}],"wp:attachment":[{"href":"https:\/\/ideastomakemoneytoday.online\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=8967"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ideastomakemoneytoday.online\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=8967"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ideastomakemoneytoday.online\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=8967"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}