在manifest.json里配置history模式,这里特别注意下面的 运行的基础路径  里不要写./因为这个默认会强制hash模式
  如图

 

  然后再服务器端配置下规则

history模式下配置nginx
 location / {
  try_files $uri $uri/ /index.html;
 }

history模式下配置Apache 


RewriteEngine On

RewriteBase /

RewriteRule ^index\.html$ - [L]

RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule . /index.html [L]

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐