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: 4df113fceca2a11556f2e463e0975b21bd84c1f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?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://(dev\.|forum\.)?piwik.org(/|$)~', $url)
&& !in_array($url, array(
	'http://blogvertising.pl/',
))) { die; }
?>
<html><head>
<meta http-equiv="refresh" content="0;url=<?php echo $url; ?>"/>
</head></html>