2022-09-01 网站强制ctrl+f5刷新报错,只按f5刷新不报错,报错内容为443,但真实报错代码为404
作者:互联网
报错内容:
Not Found
The requested URL /mall was not found on this server.
Apache Server at xxx.yyy.com Port 443描述:如题。解决方案:在网站根目录添加一个文件.htaccess内容为:
<IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.html$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule .index.html [L] <IfModule>
如果把这个On改为Off,那就会在强制刷新时使页面报443,但实际上是404,On则不会。
也有网上有些方法为把这个报错443跳转至404,让其正确显示404页面,我觉得这个的按业务来走。
标签:f5,443,404,报错,刷新,RewriteCond 来源: https://www.cnblogs.com/iuniko/p/16647546.html