ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
![](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] ~~~