This is old news for most of us and yet when I wanted to quickly find it, it took some searching.これは私たちのほとんどが古いニュースとはまだありませんがしたかったを迅速に見つけること、それはいくつかの検索を実行します。 So here it is, in simple language, what you can do to prevent your web pages from being cached by browsers.のでここでは、簡単な言語は、何ができるのかがお客様のウェブページのを防ぐのブラウザでキャッシュされています。

Add in your head section (betweenカートにして頭セクション(の間に andおよび tags):タグ) :



And then add the same code just before the endingと入力し、同じコードを追加してエンディングの直前に tag:タグ:



Explanation:説明:
The Pragma directive is to satisfy most browsers. pragmaディレクティブを満足させるのは、ほとんどのブラウザです。 However Internet Explorer doesn’t work with it at the beginning, so we have to place it at the end too.しかしインターネットエクスプローラではありませんの冒頭にそれに取り組むことがので、私たちの末尾に配置することが判明しました。 Again IE 5.5 doesn’t recognize it.つまり再び5.5に認識されません。 So we need to add the Expires directive too.有効期限が切れるので、ディレクティブを追加する必要が判明しました。 Hat tip帽子のヒント

Note: In WordPress you can call the function nocache_headers() to prevent caching by modifying HTTP headers, as dicussed in the comments below.注:この関数を呼び出すことができますにWordPress のnocache_headers ( )を防止するHTTPヘッダーのキャッシュを変更、 dicussedとしては、コメントは以下のとおり。