To show users a brief message before redirecting them to the final target URL, follow the steps below.
- Edit or create your Pretty Link.
- On the Basic tab, set Redirection to Meta Refresh or Javascript.
- On the Advanced tab, set Delay Redirect to 3–5 seconds. This controls how long users see your message before the redirect.
- On the Pro tab, copy the following JavaScript into the Head Scripts box.
<script type="text/javascript">
window.addEventListener('load', function() {
var content = "<p>You are being redirected...</p>";
document.getElementsByTagName('body')[0].innerHTML = content;
})
</script>
To change the message, edit the You are being redirected… text.