Feature #1385
Updated by Alexander Watzinger about 4 years ago
Fix URL
For Apache config see: https://router.vuejs.org/guide/essentials/history-mode.html#example-server-configurations
e.g. in Apache config add this to virtual host in directory of virtual host:
<pre>
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.html [L]
</IfModule>
</pre>
also dist to .gitignore