![](https://img.kancloud.cn/ad/6d/ad6d2cfba120cd552574a4e065e2c3d9_1281x774.png)
**二、服务器配置**
打包好H5代码上传到服务器还需要做伪静态的配置。
history模式下配置nginx
~~~text
location / {
try_files $uri $uri/ /index.html;
}
~~~
history模式下配置Apache
~~~text
RewriteEngine On
RewriteBase /
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.html [L]
~~~