설명 없음
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

doc.htm 3.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. {include file="header.htm" /}
  2. <body class="bodystyle" style="overflow-y: scroll; cursor: default; -moz-user-select: inherit;">
  3. <div class="page">
  4. {include file="bar.htm" /}
  5. <div class="flexigrid">
  6. <div class="mDiv" style="margin-left: 30px;">
  7. <p style="font-size: 15px;line-height: 2em;">【二级域名使用方法】<span style="color:red">修改完模式,后台右上角先清理一下缓存</span></p>
  8. <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>
  9. <div>
  10. <p>1例.宝塔面板:修改已有站点</p>
  11. <p>设置网站->子目录绑定</p>
  12. <p>填写手机域名,子目录选择生成的手机静态目录</p>
  13. <img src="__WEAPP_TEMPLATE__/skin/images/010101.png" alt="">
  14. <br>
  15. <p>2例.宝塔面板:添加新站点</p>
  16. <p>添加站点</p>
  17. <p>填写手机域名,根目录选择生成的手机静态目录</p>
  18. <img src="__WEAPP_TEMPLATE__/skin/images/020202.png" alt="">
  19. </div>
  20. <div>
  21. <p style="font-size: 25px;line-height: 2em;color:red;">添加下面代码到/extend/function.php</p>
  22. <p style="font-size: 12px;line-height: 1em; color: white; background: #333;">
  23. {literal}
  24. // 自定义函数-QQ 2220673197
  25. if (!function_exists('diy_GetMobileUrl')) {
  26. /**
  27. * 获取当前PC网址的手机网址
  28. */
  29. function diy_GetMobileUrl($url = '', $m = 'm', $type = '', $tid = '', $aid = '') {
  30. $webData = tpCache('web');
  31. /*是否开启手机站域名,并且配置*/
  32. if (!empty($webData['web_mobile_domain_open']) && !empty($webData['web_mobile_domain'])) {
  33. $murl = $webData['web_mobile_domain'] . '.' . request()->rootDomain();
  34. } else {
  35. $murl = $m . "." . request()->rootDomain();
  36. }
  37. $regs = '/(http|https):\/\//i'; //正则表达式
  38. preg_match($regs, $url, $res);
  39. if (!$res) {
  40. $url = request()->scheme() . '://' . request()->rootDomain() . $url;
  41. }
  42. //网站的url
  43. if ($type) {
  44. $reg = '/\/' . $type . '\//';
  45. $url = preg_replace($reg, '/', $url);
  46. }
  47. $reg = '/(http|https):\/\/([^\/]+)/i'; //正则表达式
  48. $url = preg_replace($reg, request()->scheme() . '://' . $murl, $url);
  49. return $url;
  50. }
  51. }
  52. if (!function_exists('diy_GetMobileUrlType')) {
  53. /**
  54. * 获取当前PC网址的手机网址目录
  55. */
  56. function diy_GetMobileUrlType($url = '', $m = 'm', $type = '', $tid = '', $aid = '') {
  57. //网站的url
  58. if ($type) {
  59. $reg = '/\/' . $type . '\//';
  60. $url = preg_replace($reg, '/', $url);
  61. $url = preg_replace($reg, '/', $url);
  62. }
  63. $regs = '/(http|https):\/\//i'; //正则表达式
  64. preg_match($regs, $url, $res);
  65. if (!$res) {
  66. $url = '/' . $m . $url;
  67. }else{
  68. $reg = '/(http|https):\/\/([^\/]+)/i'; //正则表达式
  69. $url = preg_replace($reg, request()->domain().'/'. $m, $url);
  70. }
  71. return $url;
  72. }
  73. }
  74. {/literal}
  75. </p>
  76. </div>
  77. </div>
  78. </div>
  79. </div>
  80. <style>
  81. .mDiv img{
  82. width: 80%;
  83. }
  84. .mDiv p{
  85. font-size:25px;
  86. }
  87. .flexigrid .mDiv {
  88. white-space: break-spaces;
  89. }
  90. </style>
  91. {include file="footer.htm" /}