The htaccess I\'m using is as follow
RewriteBase /
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %
I handle this issue in my project with working on my VirtualHost
DocumentRoot "/Applications/MAMP/htdocs/angular"
ServerName zeyton.dev
ServerAlias www.zeyton.dev
DirectoryIndex index.html
order allow,deny
allow from all
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^(.*) /index.html [NC,L]