I'll try explain it further, I'm building a web-art website and there is a page that is supposed to have rare chance to redirect to a different page.
After 10 seconds, the page redirects to two possible pages, one being rarer than the other basically
Just one page that has a chance to redirect to two different possible pages.
I have the code down for it to redirect to the common page after 10 secs:
<script> var timer = setTimeout(function() { window.location='/error.html' }, 10000); </script>