Files
pixelstreamingv2/public/htaccess
T
VyacheslavShtyrlin 2838655cd4 added redux
2022-12-26 22:39:33 +05:00

14 lines
287 B
Plaintext

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule . /index.html [L]
FallbackResource ./index.html
</IfModule>