From c05bbe684f6b066f47bdf96e0ff1e85750eb6928 Mon Sep 17 00:00:00 2001 From: Kira Date: Sun, 22 Mar 2026 21:28:36 +0000 Subject: [PATCH] Add show_order.php redirect to receipt page Legacy URL payfr.it/show_order.php?UUID=... was returning 404. Added PHP redirect (301) to /receipt/index.php which has the actual receipt logic. --- show_order.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 show_order.php diff --git a/show_order.php b/show_order.php new file mode 100644 index 0000000..5bd19d2 --- /dev/null +++ b/show_order.php @@ -0,0 +1,16 @@ + $uuid, + 'is_admin_view' => $isAdminView, +]); + +header("Location: /receipt/index.php?{$params}", true, 301); +exit;