blob: 70ceb4617d0eeb1e375dfdb633e8ccd77da5e13e [file] [log] [blame]
<?php
header("HTTP/1.1 302 Found");
header("Cache-Control: no-cache, no-store, must-revalidate");
if (isset($_GET["conversionData"]) && isset($_GET["priority"])) {
header("Location: /.well-known/ad-click-attribution/" . $_GET["conversionData"] . "/" . $_GET["priority"]);
} else if (isset($_GET["conversionData"])) {
header("Location: /.well-known/ad-click-attribution/" . $_GET["conversionData"]);
}
?>