1
1
mirror of https://git.gay/DeltaStudio/PufokReactApp.git synced 2025-07-17 21:32:24 +07:00

server access fixes

This commit is contained in:
pufok 2025-04-04 02:22:46 +03:00
parent 4e13dd15d5
commit 1a133f5f91

View File

@ -5,4 +5,7 @@
RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.html [L] RewriteRule . /index.html [L]
# Редирект с HTTP на HTTPS
RewriteCond %{HTTPS} off
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
</IfModule> </IfModule>