<?php
// Destination URL
$redirect_url = "https://opiedelivers.com";

// Send the redirect header
header("Location: $redirect_url");
exit();  // Ensure no further code execution
?>
