TestRedirect
4 years ago in HTML
<html>
<head>
<script type="text/javascript">
var urlParams = new URLSearchParams(window.location.search);
var redirectURL = urlParams.get('redirect');
window.location.replace(redirectURL);
</script>
</head>
<body>
</body>
</html>