I would like to load a webpage with limited contact to a server. I have a cross-application link but safari just will not open the data: uri. Is there anyway to begin that with http://? What about javascript in a url, http://javascript:window.location="data:"? I do not want to have to contact a server (offline stuff).
If not, could I use a simple php page to redirect it? Ex:
http://someserver/index.php?input="data:text/html;charset=UTF-8,htmlhere"
and in the php script: ... < meta http-equiv="refresh" content="0;url=< ?php echo($GET_['input']); ?>" /> ...