1
0
mirror of https://github.com/insomniafi/extra synced 2025-06-14 19:06:00 +00:00

Initial Commit

This commit is contained in:
Christer Warén
2023-03-30 19:08:32 +03:00
commit 7974f9126d
7 changed files with 1148 additions and 0 deletions

14
.htaccess Normal file
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.php [NC,L,QSA]
</IfModule>