Welcome to mirror list, hosted at ThFree Co, Russian Federation.

redirectToUrl.php « misc - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c5597aa4c45da0ba0e8b0f81411dda59e6e253a2 (plain)
1
2
3
4
5
6
7
8
9
<?php
// we redirect to the website instead of linking directly because we don't want
// to expose the referer on the piwik demo
$url = htmlentities($_GET['url']);
if(!preg_match('~http://(forum\.)?piwik.org(/|$)~', $url)) { die; }
?>
<html><head>
<meta http-equiv="refresh" content="0;url=<?php echo $url; ?>"/>
</head></html>