English 中文(简体)
如何防止网站内容的封存?
原标题:How to prevent caching of website content?

我有一个充满活力的网页, 有一小部分内容 随时会改变。

每项请求的不同内容由: Javascript 和 HTML 组成。

为了让网站正确显示正本和 HTML 需要从服务器上100%更新。 我检查了页错误, 错误不时发生, 是旧/ 旧装入的正本或 HTML 的结果, 而不是服务器上的新数据 。

我将以下设置绑在.htacces:

Header Set Cache-Control "max-age=0, no-store"

上述环境正在起作用,但问题在于,每次还须重新加载图像,这没有必要,而且对现场性能不利。

我也在.htacces中尝试了以下设置:

### turn on the Expires engine
ExpiresActive On

### expires after a month in the client s cache
ExpiresByType image/gif A36000
ExpiresByType image/png A36000
ExpiresByType image/jpg A36000
ExpiresByType image/x-icon A36000
ExpiresByType application/pdf A36000
### ExpiresByType application/x-javascript A36000
### ExpiresByType text/plain A36000

然而,上述内容似乎不起作用,因为我检查了内容并不总是新鲜的,结果造成页数错误。

我的问题:

我怎样才能正确配置服务器, 使服务器总是(通过生成的phip脚本) 使用新鲜的 HTML 和 javascript?

问题回答

文本/ html 和 css 文件的过期时间与图像不同吗?

ExpiresByType text/html "access plus 5 seconds"
ExpiresByType text/css "access plus 5 seconds"
ExpiresByType image/jpg "access plus 5 minutes"
etc

i 在一个我的应用程序有相同的更新要求的情况下,使用了以下(php) :

// disable cache (ajax useful)
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");




相关问题
CSS working only in Firefox

I am trying to create a search text-field like on the Apple website. The HTML looks like this: <div class="frm-search"> <div> <input class="btn" type="image" src="http://www....

image changed but appears the same in browser

I m writing a php script to crop an image. The script overwrites the old image with the new one, but when I reload the page (which is supposed to pickup the new image) I still see the old one. ...

Firefox background image horizontal centering oddity

I am building some basic HTML code for a CMS. One of the page-related options in the CMS is "background image" and "stretch page width / height to background image width / height." so that with large ...

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签