revamp the site and go fully static
[~bandali/bndl.org] / static / .htaccess
diff --git a/static/.htaccess b/static/.htaccess
deleted file mode 100644 (file)
index 4f38f87..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-<IfModule mod_rewrite.c>
-# don't add .html in the rewrite below
-Options -MultiViews
-
-RewriteEngine On
-RewriteBase /
-# if not already on bandali.eu.org, redirect to there
-RewriteCond %{HTTP_HOST} !^bandali\.eu\.org$
-RewriteRule ^(.*)$ https://bandali.eu.org/$1 [R]
-
-# now we have to explicitly tell apache that files with no
-# extension are actually .html
-RewriteCond %{REQUEST_FILENAME}.html -f
-RewriteRule !.*\.html$ %{REQUEST_FILENAME}.html [L]
-</IfModule>