[Vuejs]-Vue.js SPA redirecting to index.html with .htaccess does not work for every Page

0👍

Try to use this config in your .htaccess file and replace with your application url

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

Leave a comment