如何在我的config.xml
文件中指明从我的网络服务器上的index.html
启动我的手机应用程序?这是给我的默认代码:
<access origin="https://127.0.0.1*"/>
我想做的是这样的事情:
<access origin="https://server_add/folder/index.html*"/>
我正在使用PhoneGap。
答案 0 :(得分:0)
这不是那样做的。访问标记只允许访问外部资源。
<access origin="*" />
<access origin="http://server_add" />
执行此操作后,您可以轻松地将索引文件指向需要的位置。
<body onload="document.location.href='http://server_add/index.html';">