• destonn8.0二级域名商铺资讯引入主域名实现方案


       因为自己的服务器伪静态有点问题,destonn8.0二级域名商铺资讯二级域名无法打开,于是想出解决方案,就是二级域名商铺保留,资讯和内容引入主域名。

    实现方案:

    找到:/include/global.func.php 中找到

      

    function userurl($username, $qstring = '', $domain = '') {
    	global $CFG, $DT, $MODULE;
    	$URL = '';
    	$subdomain = 0;
    	if($CFG['com_domain']) $subdomain = substr($CFG['com_domain'], 0, 1) == '.' ? 1 : 2;
    	if($username) {
    		if($subdomain || $domain) {
    			$scheme = $DT['com_https'] ? 'https://' : 'http://';
    			$URL = $domain ? $scheme.$domain.'/' : ($subdomain == 1 ? $scheme.($DT['com_www'] ? 'www.' : '').$username.$CFG['com_domain'].'/' : $scheme.$CFG['com_domain'].'/'.$username.'/');
    			if($qstring) {
    				parse_str($qstring, $q);
    				if(isset($q['file'])) {
    					$URL .= $CFG['com_dir'] ? $q['file'].'/' : 'company/'.$q['file'].'/';
    					unset($q['file']);
    				}
    				if($q) {
    					if($DT['rewrite']) {
    						foreach($q as $k=>$v) {
    							$v = rawurlencode($v);
    							$URL .= $k.'-'.$v.'-';
    						}
    						$URL = substr($URL, 0, -1).'.shtml';
    					} else {
    						$URL .= 'index.php?';
    						$i = 0;
    						foreach($q as $k=>$v) {
    							$v = rawurlencode($v);
    							$URL .= ($i++ == 0 ? '' : '&').$k.'='.$v;
    						}
    					}
    				}
    			}
    		} else if($DT['rewrite']) {
    			$URL = DT_PATH.'com/'.$username.'/';
    			if($qstring) {
    				parse_str($qstring, $q);
    				if(isset($q['file'])) {
    					$URL .= $CFG['com_dir'] ? $q['file'].'/' : 'company/'.$q['file'].'/';
    					unset($q['file']);
    				}
    				if($q) {
    					foreach($q as $k=>$v) {
    						$v = rawurlencode($v);
    						$URL .= $k.'-'.$v.'-';
    					}
    					$URL = substr($URL, 0, -1).'.html';
    				}
    			}
    		} else {
    			$URL = DT_PATH.'index.php?homepage='.$username;
    			if($qstring) $URL = $URL.'&'.$qstring;
    		}
    	} else {
    		$URL = $MODULE[4]['linkurl'].'guest.php';
    	}
    	return $URL;
    }
    

      替换为:

    function userurl($username, $qstring = '', $domain = '') {
    	global $CFG, $DT, $MODULE;
    	$URL = '';
    	$subdomain = 0;
    	if($CFG['com_domain']) $subdomain = substr($CFG['com_domain'], 0, 1) == '.' ? 1 : 2;
    	if($username) {
    		if($subdomain || $domain) {
    			$scheme = $DT['com_https'] ? 'https://' : 'http://';
    			$URL = $domain ? $scheme.$domain.'/' : ($subdomain == 1 ? $scheme.($DT['com_www'] ? 'www.' : '').$username.$CFG['com_domain'].'/' : $scheme.$CFG['com_domain'].'/'.$username.'/');
    			if($qstring) {
    				parse_str($qstring, $q);
    				if(isset($q['file'])) {
    					$URL .= $CFG['com_dir'] ? $q['file'].'/' : 'company/'.$q['file'].'/';
    					unset($q['file']);
    				}
    				if($q) {
    					
    					
    					
                        if($q) {
    						$URL = DT_PATH.'com/'.$username.'/news/';
    					foreach($q as $k=>$v) {
    						$v = rawurlencode($v);
    						$URL .= $k.'-'.$v.'-';
    					}
    					$URL = substr($URL, 0, -1).'.html';
    				}
    
    					else {
    						$URL .= 'index.php?';
    						$i = 0;
    						foreach($q as $k=>$v) {
    							$v = rawurlencode($v);
    							$URL .= ($i++ == 0 ? '' : '&').$k.'='.$v;
    						}
    					}
    				}
    			}
    		} else if($DT['rewrite']) {
    			$URL = DT_PATH.'com/'.$username.'/';
    			if($qstring) {
    				parse_str($qstring, $q);
    				if(isset($q['file'])) {
    					$URL .= $CFG['com_dir'] ? $q['file'].'/' : 'company/'.$q['file'].'/';
    					unset($q['file']);
    				}
    				if($q) {
    					foreach($q as $k=>$v) {
    						$v = rawurlencode($v);
    						$URL .= $k.'-'.$v.'-';
    					}
    					$URL = substr($URL, 0, -1).'.html';
    				}
    			}
    		} else {
    			$URL = DT_PATH.'index.php?homepage='.$username;
    			if($qstring) $URL = $URL.'&'.$qstring;
    		}
    	} else {
    		$URL = $MODULE[4]['linkurl'].'guest.php';
    	}
    	return $URL;
    }
    

     

    这样就实现了商铺内容调取主站,又保留商铺二级域名。

    演示地址:http://tongrenjianzhumobanzhichengjia.jieanzhineng.com/

    千行代码,Bug何处藏。 纵使上线又怎样,朝令改,夕断肠。
  • 相关阅读:
    visual studio 注释
    EF Core导航属性
    【转】前端UI框架小汇总
    C#三种定时器的实现
    【转】自学MVC看这里——全网最全ASP.NET MVC 教程汇总
    【转】C#进阶系列——WebApi 接口参数不再困惑:传参详解
    【转】c# WebApi之解决跨域问题:Cors
    优秀.NET开源项目
    Linux简介及最常用命令
    C#中使用Socket实现简单Web服务器
  • 原文地址:https://www.cnblogs.com/68xi/p/15392222.html
Copyright © 2020-2023  润新知