FireFox 正在连接到我的网站,但访问已访问过的页面将随机无法连接,从而导致
安全连接失败
Chrome 和 Microsoft Edge 没有这个问题。
奇怪的是,重新加载页面也不起作用。我需要通过使用 Shift 和重新加载来强制重新加载页面 - 然后我恢复页面,并且在使用 Shift 和重新加载时将始终加载。
我怎样才能防止这种情况发生?
html 页面是由 Apache 2.4.57 服务器提供服务的预压缩 Brotli 文件。
<IfModule mod_expires.c>
ExpiresActive On
ExpiresDefault "access plus 1 day"
ExpiresByType text/asp "now"
ExpiresByType text/html "now"
ExpiresByType text/css "access plus 1 day"
ExpiresByType video/x-m4v "access plus 15 days"
ExpiresByType image/jpg "access plus 5 days"
ExpiresByType image/jpeg "access plus 5 days"
ExpiresByType image/gif "access plus 5 days"
ExpiresByType image/png "access plus 5 days"
ExpiresByType application/pdf "access plus 1 month"
ExpiresByType text/x-javascript "access plus 1 month"
ExpiresByType application/x-shockwave-flash "access plus 1 month"
ExpiresByType image/x-icon "access plus 1 month"
</IfModule>
<FilesMatch "\.(html)$">
FileETag None
<IfModule mod_headers.c>
Header unset ETag
Header set Cache-Control "max-age=0, no-cache, no-store, must-revalidate"
Header set Pragma "no-cache"
Header set Expires "access plus 3 hours"
</IfModule>
</FilesMatch>
我在 FireFox 中使用这些默认连接设置:
未建立连接时的 SSL 信息并且出现错误ns_error_net_interrupt
:
重新加载同一页面(使用 Shift 和重新加载)后的 SSL 信息 - 它再次工作:
FireFox 似乎不喜欢重新连接到过期的页面。
当将其更改为
事情开始起作用了。