Cómo sobrevivir al efecto Yonkis.com (o similares)
El truco radica en cachear tus páginas webs para evitar las múltiples conexiones a las bases de datos, que generalmente, son el problema. Cuando un sitio web potente (Yonkis.com, Barrapunto, Meneame, etc) te enlaza tienes que actuar rápido. Primero identificar de donde viene el tráfico, y luego, escribir un archivo .htaccess con el siguiente código:
!start codeRewriteEngine on
RewriteCond %{REMOTE_ADDR} !^[TU IP]$
RewriteCond %{HTTP_USER_AGENT} !^CoralWebPrx
RewriteCond %{QUERY_STRING} !(^|&)coral-no-serve$
RewriteCond %{HTTP_REFERER} ^http://(www.)?barrapunto.com [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?meneame.net [OR]
RewriteCond %{HTTP_REFERER} ^http://(www.)?yonkis.com [OR]
RewriteRule ^(.*)$ http://[TU SITIO].nyud.net:8080/$1 [R,L]!end code
De esta manera, cuando lleguen las peticiones a tu SERVER, éste se encargará de redirigirlas a un sitio espejo, evitando así el dejar fuera de control a tu máquina.

