Redirect past opening page when Javascript disabled

From LinuxServerTech

Jump to: navigation, search


How to redirect past an opening page when javascript is disabled

Insert above code in the header. This will redirect to the URL otherpage immediately if javascript is disabled (ie, noscript). The 0; in the above means "0 seconds", so if you want to redirect after 3 seconds, you would put in 3; Does not work on all browsers, but does work on most Generic Algorithm

<noscript>
<meta http-equiv="refresh" content="0; URL=otherpage">
</noscript>