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>
- [Vuejs]-How to pass the data variable in geturldata in vuejs in html part not any one is the same
- [Vuejs]-The content overflows after the echarts line chart refreshes the page
Source:stackexchange.com