apache 部署
最后更新于:2022-04-02 03:33:15
[TOC]
在 history 中,刷新页面会导致报错,在 `.hatccess`中添加
```
RewriteEngine On
RewriteBase /
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.html [L]
```
';