Jump to content

[SOLVED] redirect macintosh users


slanderman

Recommended Posts

Does anyone know of a script, or is it even possible to redirect users running a Mac to a different page?

 

Want it to redirect based on OS rather than browser.  Could something like this be manipulated to redirect users based on the OS?

 

   
      $OSList = array
   
      (
   
              // Match user agent string with operating systems
   
              'Windows 3.11' => 'Win16',
   
              'Windows 95' => '(Windows 95)|(Win95)|(Windows_95)',
   
              'Windows 98' => '(Windows 98)|(Win98)',
   
              'Windows 2000' => '(Windows NT 5.0)|(Windows 2000)',
   
              'Windows XP' => '(Windows NT 5.1)|(Windows XP)',
   
              'Windows Server 2003' => '(Windows NT 5.2)',
  
              'Windows Vista' => '(Windows NT 6.0)',
  
              'Windows 7' => '(Windows NT 7.0)',
  
              'Windows NT 4.0' => '(Windows NT 4.0)|(WinNT4.0)|(WinNT)|(Windows NT)',
  
              'Windows ME' => 'Windows ME',
  
              'Open BSD' => 'OpenBSD',
  
              'Sun OS' => 'SunOS',
  
              'Linux' => '(Linux)|(X11)',
  
              'Mac OS' => '(Mac_PowerPC)|(Macintosh)',

              'QNX' => 'QNX',

              'BeOS' => 'BeOS',

              'OS/2' => 'OS/2',

              'Search Bot'=>'(nuhk)|(Googlebot)|(Yammybot)|(Openbot)|(Slurp)|(MSNBot)|(Ask Jeeves/Teoma)|(ia_archiver)'

      );

       

      // Loop through the array of user agents and matching operating systems

      foreach($OSList as $CurrOS=>$Match)

      {

              // Find a match

          if (eregi($Match, $_SERVER['HTTP_USER_AGENT']))

              {

                      // We found the correct match

                      break;

              }

      }

      // You are using Windows Vista

      echo "You are using ".$CurrOS;

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.