Actions
Feature #1385
closedAdd Apache config to install notes
Start date:
2020-10-15
Estimated time:
Description
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:
<IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.html$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.html [L] </IfModule>
also dist to .gitignore
Actions