I built a VUE CLI Web App Containing Vue-Router and so I should rewrite all requests to index.html file like this:
RewriteEngine On
RewriteRule ^(.*)$ ./index.html [L]
But there is a problem that there are two folders css and js containing packed css's and js's, automaticly generated by Vue-CLI. And the browser will send a request like: https://example.com/css/xyz.css but as rewrited above, the Apache gonna answer index.html file. such for js folder/files
What can I do for Rewrite all Requests to index.html BUT existing files/folders like favicon.ico or Bootstrap css/js files or pictures or css/js files in same folders?