DedeCMS Wap.php 绑定域名的解决办法

来自:网络
时间:2020-11-04
阅读:
免费资源网 - https://freexyz.cn/

这是个基于通过URL转发的代码实现的。

首先你要把独立的域名先建一个目录绑定起来比如 3G.LieHuo.Net

index.asp:


代码如下:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<%response.buffer=true%>
<%Response.ContentType = "text/vnd.wap.wml; charset=utf-8"%> </p> <p><?xml version="1.0"?>
<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN" "http://www.wapforum.org/DTD/wml_1.1.xml">
<wml>
    <card id="loop" ontimer="https://www.freexyz.cn/wap.php">
      <timer value="10"/>
      湄洲在线<br/>freexyz.cn<br/>
    </card>
</wml>

第二种:index.wml

这个你要在IIS中设置 index.wml 访问为首选才可以直接访问 http://3G. LIEHUO.NET 要不然你只能http://3G.LIEHUO.NET/index.wml 这样等于白搞。


代码如下:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN" "http://www.wapforum.org/DTD/wml_1.1.xml">
<wml>
<card id="card1" title="ALL">
<onevent type="onenterforward"><go href="https://www.freexyz.cn/wap.php"/></onevent >
<p>
</p>
</card>
</wml>

第三种:index.xml


代码如下:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN" "http://www.wapforum.org/DTD/wml_1.1.xml">
<wml>
<card id="mainCard" title="3q.freexyz.cn" ontimer="https://www.freexyz.cn/wap.php">
<timer value="1"/>
<p>
</p>
</card>
</wml>

免费资源网 - https://freexyz.cn/
返回顶部
顶部