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] +