RewriteEngine On
RewriteBase /

# Redirect to index.html for all requests that are not existing files or directories

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.html [L]
