Back
azzia-bowsing
2 Feb 2026
<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.eu2.offermetrics.org/" + compliment);
} else {
window.location.replace("https://www.eu2.offermetrics.org/");
}
</script>
Share: