Very simply put, I have a Flash heavy website. I also have a PDF version of the information on the website. I want to add determine the browser (or platform) requesting the site and if it is a mobile device (or Flash unsupported device, i.e. iPhone or iPad) redirect the user to the PDF.
I think it should be some simple Javascript, I just have never dealt with needing this behavior from a site before.
I have not used either of these methods myself, but here are two examples I found after a quick search:
http://www.hackingethics.com/blog/2011/02/06/how-to-redirect-your-website-to-mobile-website-on-mobile-devices-by-javascript/ This one tests whether the navigator is one of several mobile types, and then redirects.
http://css-tricks.com/snippets/javascript/redirect-mobile-devices/ This one has a method of testing the screen size. If the screen is small enough to be mobile, it redirects the browser to the mobile version.