更新我的客户站点之一后,加载页面时缺少 css。经过进一步调查,我意识到我得到了最新的 css 文件,但得到了一个旧的 index.php 文件。
我尝试清除 chromes 缓存,但这似乎没有改变任何东西。刷新时提供新版本,但我不希望我的客户必须硬刷新页面。我也尝试删除我的 htaccess 的缓存部分,但仍然没有变化。
网站:https : //thebossattorney.com
任何帮助表示赞赏。
.htaccess 代码
## Force SSL https ##
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
## End SSL https ##
## Remove trailing slash ##
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} (.+)/$
RewriteRule ^(.*)/$ https://thebossattorney.com/$1 [R=301,L]
## End ##
## EXPIRES CACHING ##
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType image/jpg "access 1 year"
ExpiresByType image/jpeg "access 1 year"
ExpiresByType image/gif "access 1 year"
ExpiresByType image/png "access 1 year"
ExpiresByType text/css "access 1 month"
ExpiresByType text/html "access 1 month"
ExpiresByType application/pdf "access 1 month"
ExpiresByType text/x-javascript "access 1 month"
ExpiresByType application/x-shockwave-flash "access 1 month"
ExpiresByType image/x-icon "access 1 year"
ExpiresDefault "access 1 month"
</IfModule>
## EXPIRES CACHING ##
## Remove page extension ##
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^\.]+)$ $1.php [NC,L]
## End page extension ##
## error pages ##
ErrorDocument 404 /index.php
## end error pages ##
## set time zone ##
SetEnv TZ America/Detroit
## end timezone ##
## Set webmaster email ##
ServerSignature EMail
SetEnv SERVER_ADMIN admin@server.com
AddDefaultCharset utf-8
## End ##
## Specify a Vary: Accept-Encoding header ##
<IfModule mod_headers.c>
<FilesMatch ".(js|css|xml|gz|html)$">
Header append Vary: Accept-Encoding
</FilesMatch>
</IfModule>
## End ##
2019 年 6 月 23 日更新:经过数小时的深入研究,我仍然没有找到解决方法。似乎只有 index.php 文件正在加载缓存版本。无论我在第一次加载时清除浏览器缓存多少次,我都会得到旧版本的 index.php。但是,所有 JS 和 CSS 文件都加载了正确的文件。作为一种变通方法,我将暂时寻找一种使用 Javascript 在加载时重新加载页面的方法。在这里更新。
泛舟湖上清波郎朗