From 228e9fae9172d4eb71c208177ec9a7107214e37e Mon Sep 17 00:00:00 2001 From: elektrischerwalfisch Date: Tue, 15 Apr 2025 09:17:07 +0200 Subject: [PATCH] add optional htaccess-dev --- .gitignore | 1 + .htaccess | 6 +++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index d261024..25b2736 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ .vscode +.htaccess-dev todo.md salat.php zwiebeln.php diff --git a/.htaccess b/.htaccess index 979b388..4ef3cc8 100644 --- a/.htaccess +++ b/.htaccess @@ -1,8 +1,12 @@ # Redirects all requests to index.php to enable clean URLs. # @package flatMark - RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.+)$ index.php [L,QSA] + +# If .htaccess-dev (for development-purposes) exists, include it + + Include .htaccess-dev + \ No newline at end of file -- 2.47.3