If anyone is looking to put an automatic redirect to navigate the user to the correct site, e.g. desktop or mobile site, here is my code, which is based on an example from the following site:
http://www.inmotionhosting.com/support/website/redirects/mobile-redirect
<html>
<head>
<script>if(/Android|webOS|iPhone|iPad|iPod|BlackBerry/i.test(navigator.userAgent)){
window.location ="http://act.mycompany.com/apfw/m";} else {window.location ="http://act.mycompany.com/apfw";} </script>
</head>
<body>
</body>
</html>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.