Options -MultiViews
RewriteEngine On

# Serve real files and folders normally.
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]

# Send all other URLs to the React app.
RewriteRule ^ index.html [L]
