[Vuejs]-Getting 404 on valid subdomain pages when refreshing

1👍

Have you updated the .htaccess?

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

Additional info
Example Server Configurations

👤Evan

Leave a comment