PS3を使用している場合、ユーザーを別のWebページにリダイレクトしてほしい
これが私が使おうとしているコードです
<script language=javascript>
<!--
if ((navigator.userAgent.match(/iMozilla/i)) || (navigator.userAgent.match(/iPLAYSTATION 3/i))) {
location.replace("http://example.com");
}
-->
</script>
PS3のユーザーエージェントのリストはここにありますhttp://www.useragentstring.com/pages/Playstation%203/
私はそれを機能させることができないようですが、私は何が間違っているのですか?