1。 Cache Complete Generated Pagesキャッシュを完全に生成ページにする。
これでだいぶ早くなりそう。
ordPressはPHPスクリプトなので、すべては、ページが読み込まれるたびに、意味は動的である、ワードプレスのための場合、高トラフィックの経験は、サイトをロードしてもクラッシュは、サーバーの負荷のためにゆっくり作成するクエリを実行する必要があります。 The best solution to this problem is by using static pages.この問題に対する最善の解決策は静的なページを使用しています。 A plugin called WP Super Cache cache complete generated pages and serve those to your users instead of processing the heavy dynamic queries.プラグインWPスーパーキャッシュキャッシュページの生成が完了し、ユーザーの代わりに処理が重い動的クエリにそれらの提供と呼ばれる。 Once you have installed this plugin, you will see significant decrease in your site load time and much more efficiency in the usage of server resources.完了したら、このプラグインをインストールして、あなたのサイトの読み込み時間とサーバーリソースの使用率がはるかに効率の大幅な減少が表示されます。
2。 Disable Hotlinking and Prevent Leeching無効にするホットとリーチング防止

Hotlinking is also known as bandwidth theft.ホットまた、帯域幅が窃盗事件として知られている。 It is when other sites direct link to the images on your site from their articles making your server load increasingly high.それはときにその記事をあなたのサーバーの負荷がどんどん高くなることからあなたのサイト上の画像を他のサイトに直接リンクします。 If one site does it, it might not make a significant difference, but there are too many spammers that will do this and that is something your server cannot hold specially if they copy your article with a lot of images.もし1つのサイトではありませんが、しかし、大きな違いはない可能性があるがこれを行うにはあまりにも多くのスパマーがいるとは、お客様サーバーの特別な場合は、画像を多く使用して記事のコピーを保持することができないものです。 No matter how good your web host is, it will be slowed down if hotlinking is not prevented.場合、ホットリンクを阻止されていないがどんなにあなたのWebホストですが、減速されることが良い。 There are a few ways you can disable hotlinking.いくつかの方法で無効にできますホットリンクされます。 First way we will share is through your root .htaccess file where you will place this code below:我々が共有するルートを介して最初の方法です。ここで、以下のコードを配置しますhtaccessファイル:
#disable hotlinking of images with forbidden or custom image optionまたはカスタムイメージのオプションを禁止して画像番号を無効にするホットリンク
RewriteEngine on RewriteEngineに
RewriteCond %{HTTP_REFERER} !^$するRewriteCond%(HTTP_REFERERの)!^ $
RewriteCond %{HTTP_REFERER} !^http://(www\.)?yourdomain.com/.*$ [NC]するRewriteCond%(HTTP_REFERERの)!^ http://](通常のWWW \。)?yourdomain.com / .* $ [ノースカロライナ州]
#RewriteRule \.(gif|jpg)$ %u2013 [F] #するRewriteRule \。(GIF形式| JPG)を$%u2013【F】
#RewriteRule \.(gif|jpg)$ http://www.yourdomain.com/stealingisbad.gif [R,L] #するRewriteRule \。(GIF形式| JPG)を$ http://www.yourdomain.com/stealingisbad.gif [受、L]を
You can make an image that will replace all hot linked image that will say Stealing is bad or something so it makes the spammer look stupid.あなたが悪いか何かので、スパマーになりますが、その窃盗と言うだろうすべてのホットリンクされたイメージに置き換えられますイメージを作ることができますが愚かに見える。 Another way to do is through the cPanel.を行う別の方法は、cPanelのすることです。 If you are using cPanel hosting this is much easier because you don’t have to get your hands dirty by editing the codes.これを編集してコードをあなたの手を汚す必要がない場合はcPanelのホスティングサービスを使用しているよりずっと簡単です。 In your cPanel find an option called Hotlink Protection.あなたのcPanelのではホットリンク保護と呼ばれるオプションを見つける。 Select that and follow the settings like shown in the image below:を選択し、下の画像に示すような設定に従います:
個人的には、ホットリンクを防止してしまうと口コミの量も減ってしまいそうで微妙ですが、効果は、あるでしょう。
参照元:
http://www.wpbeginner.com/wp-tutorials/18-useful-tricks-to-speed-up-wordpress-boost-performance/



