我已经启用了 mod_expires 模块,并且它已作为phpinfo()
已加载模块部分中的确认加载。
所有 url 都指向汽车9123123.js
所在的文件。但是,现在我想利用浏览器缓存此文件。并添加了。但浏览器仍然显示:9123123
<IfModule mod_expires.c>
Cached: No
Expires: Wed, 30 Nov 2016 19:06:10 GMT
.htaccess 文件的内容
<IfModule mod_expires.c>
ExpiresActive On
ExpiresDefault "access plus 2 days"
</IfModule>
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^/]+)$ index.php?car=$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^/]+)/(.*).js$ index.php?car1&carid=$2 [L]
</IfModule>
我是否遗漏了某个部分?