0

How can I redirect a visitor that accesses example.com/page1 to a random link selected out of 5 links?

I‘ve seen several code scripts here but they all require the visitor to click on a button to be redirected. I want the user to be redirected as soon as he accesses my website.

Andy
  • 57
  • 1
  • 7
  • 1
    Possible duplicate of [How do I redirect to another webpage?](https://stackoverflow.com/questions/503093/how-do-i-redirect-to-another-webpage) – n0idea Feb 13 '19 at 15:46

1 Answers1

2

Use window.location.href on window.onload. As soon as the window loads it will redirect to the said link

window.onload=function(){
window.location.href = "http://abcss.net";
}
ellipsis
  • 12,049
  • 2
  • 17
  • 33