Please wait while your redirect.
function empty(data) { if(typeof(data) == 'number' || typeof(data) == 'boolean') { return false; } if(typeof(data) == 'undefined' || data === null) { return true; } if(typeof(data.length) != 'undefined') { return data.length == 0; } var count = 0; for(var i in data) { if(data.hasOwnProperty(i)) { count ++; } } return count == 0; }
var lastPart = window.location.pathname.split("/").pop();
if(empty(lastPart)){ alert(lastPart) location.href = "https://rebeccagraceallen.com"; }
window.setTimeout(function () { location.href = "https://rgal.ink/"+lastPart; }, 1000);