Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
2.8k views
in Technique[技术] by (71.8m points)

It's possible to set HTTP headers with htaccess?

i have website on PHP and i wont to know how to set this HTTP headers:

  • Last-Modified
  • If-Modified-Since
  • Cache-Control
  • ETag

For Last-Modified i try this:

RewriteRule .* - [E=HTTP_IF_MODIFIED_SINCE:%{HTTP:If-Modified-Since}]
RewriteRule .* - [E=HTTP_IF_NONE_MATCH:%{HTTP:If-None-Match}]

For Cache-Control:

<FilesMatch ".(ico|jpg|jpeg|png|gif|js|css|swf|pdf)$">
     Header set Cache-Control "max-age=604800, public, must-revalidate" 
</FilesMatch>
<FilesMatch ".(html|htm|xml|txt|xsl)$">
     Header set Cache-Control "max-age=86400, public, must-revalidate" 
</FilesMatch>

For ETag this:

Header unset
ETag File
ETag None

But don't works and don't returned in headers. It's right method with htaccess, it's possible? In case of YES, how to make it?

Thank you so much on advise!


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...