123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- {include file="header.htm" /}
- <body class="bodystyle" style="overflow-y: scroll; cursor: default; -moz-user-select: inherit;">
- <div class="page">
- {include file="bar.htm" /}
- <div class="flexigrid">
- <div class="mDiv" style="margin-left: 30px;">
-
- <p style="font-size: 15px;line-height: 2em;">【二级域名使用方法】<span style="color:red">修改完模式,后台右上角先清理一下缓存</span></p>
- <p style="font-size: 25px;line-height: 2em;color:red;">注意:如果对解析域名并绑定到html生成目录 、样式表js等静态资源放到手机目录指定<br>位置都不熟悉怎么操作,那就不建议使用二级域名模式,请切换回<span style="font-size: 25px;line-height: 2em;color:black;">二级目录</span>模式</p>
- <div>
-
-
- <p>1例.宝塔面板:修改已有站点</p>
- <p>设置网站->子目录绑定</p>
- <p>填写手机域名,子目录选择生成的手机静态目录</p>
- <img src="__WEAPP_TEMPLATE__/skin/images/010101.png" alt="">
- <br>
- <p>2例.宝塔面板:添加新站点</p>
- <p>添加站点</p>
- <p>填写手机域名,根目录选择生成的手机静态目录</p>
- <img src="__WEAPP_TEMPLATE__/skin/images/020202.png" alt="">
-
- </div>
-
- <div>
- <p style="font-size: 25px;line-height: 2em;color:red;">添加下面代码到/extend/function.php</p>
- <p style="font-size: 12px;line-height: 1em; color: white; background: #333;">
- {literal}
-
- // 自定义函数-QQ 2220673197
- if (!function_exists('diy_GetMobileUrl')) {
- /**
- * 获取当前PC网址的手机网址
- */
- function diy_GetMobileUrl($url = '', $m = 'm', $type = '', $tid = '', $aid = '') {
- $webData = tpCache('web');
- /*是否开启手机站域名,并且配置*/
- if (!empty($webData['web_mobile_domain_open']) && !empty($webData['web_mobile_domain'])) {
- $murl = $webData['web_mobile_domain'] . '.' . request()->rootDomain();
- } else {
- $murl = $m . "." . request()->rootDomain();
- }
- $regs = '/(http|https):\/\//i'; //正则表达式
- preg_match($regs, $url, $res);
- if (!$res) {
- $url = request()->scheme() . '://' . request()->rootDomain() . $url;
- }
-
- //网站的url
- if ($type) {
- $reg = '/\/' . $type . '\//';
- $url = preg_replace($reg, '/', $url);
- }
-
- $reg = '/(http|https):\/\/([^\/]+)/i'; //正则表达式
- $url = preg_replace($reg, request()->scheme() . '://' . $murl, $url);
- return $url;
- }
- }
- if (!function_exists('diy_GetMobileUrlType')) {
- /**
- * 获取当前PC网址的手机网址目录
- */
- function diy_GetMobileUrlType($url = '', $m = 'm', $type = '', $tid = '', $aid = '') {
- //网站的url
- if ($type) {
- $reg = '/\/' . $type . '\//';
- $url = preg_replace($reg, '/', $url);
- $url = preg_replace($reg, '/', $url);
-
- }
- $regs = '/(http|https):\/\//i'; //正则表达式
- preg_match($regs, $url, $res);
- if (!$res) {
- $url = '/' . $m . $url;
- }else{
- $reg = '/(http|https):\/\/([^\/]+)/i'; //正则表达式
- $url = preg_replace($reg, request()->domain().'/'. $m, $url);
- }
- return $url;
- }
- }
- {/literal}
- </p>
- </div>
-
-
- </div>
- </div>
- </div>
- <style>
- .mDiv img{
- width: 80%;
- }
- .mDiv p{
- font-size:25px;
- }
- .flexigrid .mDiv {
- white-space: break-spaces;
-
- }
- </style>
- {include file="footer.htm" /}
|