How to redirect if javaScript is disabled?

Posted by Chris on Stack Overflow See other posts from Stack Overflow or by Chris
Published on 2010-03-22T00:25:22Z Indexed on 2010/03/22 0:31 UTC
Read the original article Hit count: 570

Filed under:
|
|

I have a site which relies heavily on javaScript. I created a mirror site, which has all the JS as well as all the elements that require JS removed. What is a good, easy way to redirect users to the mirror site if they don't have javaScript enabled?

I tried this, but it doesn't seem very good:

<noscript>
  <meta http-equiv="refresh" content="0; URL=nojs/index.php">
</noscript>

I also tried to putting header-redirect into the meta tag, but that didn't work.

© Stack Overflow or respective owner

Related posts about php

Related posts about JavaScript