Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 11th, 2012  |  syntax: None  |  size: 0.66 KB  |  hits: 7  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Give option for user to still see browers version of website from mobile
  2. RewriteCond %{HTTP_USER_AGENT} "!(android|blackberry|googlebot-mobile|iemobile|ipad|iphone|ipod|opera mobile|palmos|webos)" [NC]
  3. RewriteRule ^(.*)$ http://www.m.abc.com [L]
  4.        
  5. <script type="text/javascript">
  6. <!--
  7. if (screen.width <= 699) {
  8. document.location = "mobile.html";
  9. }
  10. //-->
  11. </script>
  12.        
  13. <script language=javascript>
  14. <!--
  15. if ((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))) {
  16.    location.replace("http://url-to-send-them/iphone.html");
  17. }
  18. -->
  19. </script>
  20.        
  21. if ( (screen.width < 1024) && (screen.height < 768) ) {
  22. window.location = 'http://mobile.site.com';
  23. }