index.php 171 B

12345
  1. <?php
  2. // Redirect instantly to another URL
  3. header("Location: " . (rtrim(getenv('APP_BASE_URL') ?: '', '/') ?: '/'));
  4. exit; // Make sure to stop execution after redirect
  5. ?>