From 9d400a808e4698484ef5ca1f9e92ffe005f12591 Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Wed, 19 Mar 2025 15:40:41 +0100 Subject: [PATCH] use httpRoot when redirecting to out.ViewFolder.php --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index 5fe1d480c..7d53674b1 100644 --- a/index.php +++ b/index.php @@ -83,7 +83,7 @@ if(true) { /* Catch all route */ $app->get('/{path:.*}', function($request, $response) { return $response - ->withHeader('Location', '/out/out.ViewFolder.php') + ->withHeader('Location', $settings->_httpRoot.'out/out.ViewFolder.php') ->withStatus(302); });