added redux

This commit is contained in:
VyacheslavShtyrlin
2022-12-26 22:39:33 +05:00
commit 2838655cd4
156 changed files with 35988 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
<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>