From 6225cfe8f38c28aa30862b530d423f3368bd4370 Mon Sep 17 00:00:00 2001 From: Andre Henriques Date: Tue, 11 Jul 2023 21:14:00 +0100 Subject: [PATCH] add htaccess --- static/.htaccess | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 static/.htaccess diff --git a/static/.htaccess b/static/.htaccess new file mode 100644 index 0000000..9579c48 --- /dev/null +++ b/static/.htaccess @@ -0,0 +1,14 @@ + + RewriteEngine On + RewriteBase / + + RewriteRule ^200\.html$ - [L] + + RewriteRule ^(.+)/+$ /$1 [R=301,L] + + RewriteCond %{REQUEST_FILENAME}.html -f + RewriteRule (.+) $1.html [L] + + RewriteCond %{REQUEST_FILENAME} !-f + RewriteRule . /200.html [L] +