また今更なメモです。
※新しい機種は、これ入れなくても実機での確認はできてる様子?
+++++++++++++++++++++++++++++++++++++++++++++++++++++
■モバイルが.htmlの場合
タグに
<meta http-equiv="ContentType" Content="application/xhtml+xml">
を追加。
.htaccess
AddType application/xhtml+xml .html
を追加。
AddType application/xhtml+xml
だけでもよいという意見あるが、見てないので検証の必要あり。
もしくは拡張子を「.xhtml」へ変更。
+++++++++++++++++++++++++++++++++++++++++++++++++++++
■モバイルが.phpの場合
<?php header('Content-Type: application/xhtml+xml; charset=Shift_JIS'); echo '<?xml version="1.0" encoding="Shift_JIS"?>'."\n" ?>
を追加。(大体システムさんが入れてくれてるはず)
+++++++++++++++++++++++++++++++++++++++++++++++++++++