9 lines
No EOL
270 B
ApacheConf
Executable file
9 lines
No EOL
270 B
ApacheConf
Executable file
# Apache .htaccess file for SPA routing
|
|
RewriteEngine On
|
|
|
|
# Handle client-side routing for /semblance/
|
|
RewriteBase /semblance/
|
|
RewriteRule ^index\.html$ - [L]
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
RewriteRule . /semblance/index.html [L] |