Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
Und wie sollte das funktionieren?Lies den User-Agent des Clients aus und leite dann auf die entsprechende Seite weiter.
... und weiter!? ...Hierzu reichen ein paar Zeilen PHP-Code aus.Stichworte:Denke mal den Rest wirste wohl selber "erarbeiten" können :)PHP:$_SERVER['HTTP_USER_AGENT']header('location: http://domain.tld');
$iphone = 'Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_0 like Mac OS X; de-de)
AppleWebKit/532.9 (KHTML, like Gecko) Version/4.05 Mobile/8A293
Safari/6531.22.7';
if ($_SERVER['HTTP_USER_AGENT'] == $iphone) {
header('location: http://domain.tld');
} else {
header('location: http://domain2.tld');
}