使用Dedecms程序建网站时,可以设置网站的PC版与手机版访问地址为不同的域名。例如PC版域名为www.123.com,手机版可以设置为m.123.com。(相关教程:DEDE建网站教程)
如何设置Dedecms手机版地址为 m.123.com 格式呢,我们在做手机版时,需要对代码进行一定的修改。
[field:typelink/] 改为 [field:typelink function='preg_replace("(.*/m/)","/",@me) /]
[field:typeurl/] 改为 [field:typeurl function='preg_replace("(.*/m/)","/",@me) /]
[field:arcurl/] 改为 [field:arcurl function='preg_replace("(.*/m/)","/",@me) /]
{dede:field.body/} 改为 {dede:field.body function='str_replace("/uploads/","http://www.域名.com/uploads/",@me) /}
{dede:field.content/} 改为 {dede:field.content function='str_replace("/uploads/","http://www.域名.com/uploads/",@me) /}
{dede:field name='position' /} 改为
{dede:field name='position' function='str_replace("/m/","/",str_replace("http://www.域名.com","",@me)) /}
