<?php
// Set the destination URL
$destination_url = "https://www.Tehransazaan.ir";

// Perform the redirect
header("Location: " . $destination_url, true, 301);

// Stop the script from running further
exit;
?>