Wordpress减少占用
How to disable WP-Cron in the wp-config.php
WP-Cron can be easily disabled by adding the following code snippet into your wp-config.php file:
define('DISABLE_WP_CRON', true);
减少 爬虫
<IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{HTTP_USER_AGENT} facebookexternalhit [NC] RewriteRule .* - [F,L] </IfModule>