我怎样才能添加expires标题只是为PNG和ico文件?
使用mod_expires的ExpiresByType指令。 文档在这里。
ExpiresActive On # expire after a month ExpiresByType image/png A2592000 ExpiresByType image/x-icon A2592000
示例(对于htaccess文件):
# Cache the following content for 1 month (4 Weeks) <FilesMatch "\.(jpg|jpeg|png|gif|ico)$"> Header set Cache-Control "max-age=2419200, public" </FilesMatch>