इंटरनेट के ज़माने में किसी को मुबारकबाद देने के कई मेथड है। यह वेबसाइट भी आपको एक मेथड प्रोवाइड करता है , जिसको प्रयोग कर के आप किसी को भी विश कर सकते है। इसके लिए आपको टेक्सटबॉक्स में नाम लिखना है जिसे आप मुबारकबाद देना चाहते है, फिर आप फेसबुक या व्हाट्सप्प के माध्यम से शेयर कर सकते है.
There are many ways to congratulate someone in the age of the Internet. This website also provides you with a method, using which you can wish anyone. For this, you have to write the name in the textbox which you want to congratulate, then you can share it through Facebook or Whatsapp.
You already saw:
Sogou web spider/4.0
Add this in .htaccess:
RewriteEngine On# Block Sogou and other bad bots
RewriteCond %{HTTP_USER_AGENT} (Sogou|AhrefsBot|SemrushBot|MJ12bot|DotBot|Bytespider) [NC]
RewriteRule .* - [F,L]
Most of these IPs look like China-based bot traffic.
Country = China → Block
You can also block:
👉 This is the easiest and most powerful solution.
Turn ON:
Example:
If requests > 20 per 10 seconds → Block
Right now it says Blocked (Rate Limit) — good, but bots are still hitting.
Make it stricter:
Example logic:
Those IPs:
43.163.x.x
43.173.x.x
You can block full ranges:
Require all granted
Require not ip 43.163.0.0/16
Require not ip 43.173.0.0/16
⚠️ Only do this if you’re sure you don’t have users from that region.
Add:
Trigger CAPTCHA when:
Notice:
Chrome/103, 105, 111, 116, 117
Bots rotate versions → fake legit users.
Use JS challenge (Cloudflare does this automatically).
Especially:
Apply:
Create a script:
Example idea (PHP):
if ($requests > 50) {
file_put_contents("blocked_ips.txt", $ip.PHP_EOL, FILE_APPEND);
}
Then deny via .htaccess.
Best options:
You cannot fully stop bots, but you can:
✔ Reduce 95% of bad traffic
✔ Protect server resources
✔ Keep real users safe
Since you’re on GoDaddy shared hosting, do this:
.htaccess bot blocking