Problem mit Browserweiche

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • Problem mit Browserweiche

    PHP-Code:
    <?php
    $browser 
    getenv("HTTP_USER_AGENT");
    if (
    preg_match("/MSIE 3.+Win./"$browser)) {   
    header("Location: die url");
    exit;
    }
    if (
    preg_match("/MSIE 4.+Win./"$browser)) {   
    header("Location: die url");
    exit;
    }
    if (
    preg_match("/MSIE 3.+Mac./"$browser)) {   
    header("Location: die url");
    exit;
    }
    if (
    preg_match("/MSIE 4.+Mac./"$browser)) {   
    header("Location: die url");
    exit;
    }
    if (
    preg_match("/Mozilla\\/4.+Win./"$browser)) { // [ 1 ] Das Problem
    header("Location: die url");
    exit;
    }
    if (
    preg_match("/Mozilla\\/4.+Mac./"$browser)) {
    header("Location: die url");
    exit;
    }
    if (
    preg_match("/Opera\\/4./"$browser)) {
    header("Location: die url");
    exit;
    }
    if (
    preg_match("/Opera\\/5./"$browser)) {
    header("Location: die url");
    exit;
    }
    ?>
    Unter [ 1 ] werden auch alle IE Browser über Version 5 umgeleitet, ich krepier hier langsam
    Da soll aber der Netscape 4.+ umgeleitet werden, was mache ich jetzt?

  • #2
    z.B IE6: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)
    und NS 4.78: Mozilla/4.78 [d] (WinNT; U)

    wo liegt denn das Problem ?

    Kommentar

    Lädt...
    X