How can I detect and survive being “Slashdotted”?

前端 未结 24 1864
半阙折子戏
半阙折子戏 2021-01-29 21:19

What\'s a good way to survive abnormally high traffic spikes?

My thought is that at some trigger, my website should temporarily switch into a \"low bandwidth\" mode: swi

24条回答
  •  感情败类
    2021-01-29 21:35

    .htaccess:

    RewriteEngine on
    RewriteCond %{HTTP_REFERER} slashdot\.org [NC]
    RewriteRule .* - [F]
    

提交回复
热议问题