🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
# HTML5 History 模式 `vue-router`默认 hash 模式 —— 使用 URL 的 hash 来模拟一个完整的 URL,于是当 URL 改变时,页面不会重新加载。 如果不想要很丑的 hash,我们可以用路由的**history 模式**,这种模式充分利用`history.pushState`API 来完成 URL 跳转而无须重新加载页面。 #### Apache ~~~ <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.html$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.html [L] </IfModule> ~~~ #### nginx 在nginx.conf配置文件里 ~~~ location ~ { try_files $uri $uri/ /index.html; } ~~~