更新我的客户站点之一后,加载页面时缺少 css。经过进一步调查,我意识到我得到了最新的 css 文件,但得到了一个旧的 index.php 文件。我尝试清除 chromes 缓存,但这似乎没有改变任何东西。刷新时提供新版本,但我不希望我的客户必须硬刷新页面。我也尝试删除我的 htaccess 的缓存部分,但仍然没有变化。网站:https : //thebossattorney.com任何帮助表示赞赏。.htaccess 代码## Force SSL https ##RewriteEngine OnRewriteCond %{HTTPS} !=onRewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]## End SSL https #### Remove trailing slash ##RewriteCond %{REQUEST_FILENAME} !-dRewriteCond %{REQUEST_URI} (.+)/$RewriteRule ^(.*)/$ https://thebossattorney.com/$1 [R=301,L]## End #### EXPIRES CACHING ##<IfModule mod_expires.c>ExpiresActive OnExpiresByType 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 OnRewriteCond %{REQUEST_FILENAME} !-fRewriteRule ^([^\.]+)$ $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 EMailSetEnv SERVER_ADMIN admin@server.comAddDefaultCharset 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 在加载时重新加载页面的方法。在这里更新。
1 回答
泛舟湖上清波郎朗
TA贡献1818条经验 获得超3个赞
经过几个小时的头痛终于解决了这个问题。事实证明,Bluehost 有一个他们需要清除的服务器端缓存。清除缓存后,服务器立即开始提供新版本的 index.php
- 1 回答
- 0 关注
- 189 浏览
添加回答
举报
0/150
提交
取消