1
0
mirror of https://github.com/insomniafi/fallback synced 2026-05-31 22:55:12 +00:00

Initial Commit

This commit is contained in:
Christer Warén
2023-05-10 19:20:28 +03:00
commit 2ec0bd43b7
9 changed files with 913 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteOptions IgnoreInherit
RewriteEngine On
RewriteCond %{ENV:HTTPS} !on
RewriteCond %{REQUEST_URI} !^/?\.well-known/acme-challenge/
RewriteRule (.*) https://%{SERVER_NAME}%{REQUEST_URI} [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.html [NC,L,QSA]
</IfModule>