RewriteEngine On

# Set the base directory >>> ONLY FOR PRODUCTION SERVER!!!!
RewriteBase /run-framework/01-static/ 

# If the file or directory exists, serve it directly
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]

# Otherwise, redirect to index.html
RewriteRule ^ index.html [QSA,L]
 