[Vuejs]-Remove the auto #/ appended to URLs

0👍

Replace

<IfModule mod_rewrite.c>
  RewriteEngine On
  RewriteBase /
  RewriteRule ^index\.html$ - [L]
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteRule . /index.html [L]
</IfModule>

with

FallbackResource /index.html

https://router.vuejs.org/guide/essentials/history-mode.html#example-server-configurations

Leave a comment