DedeCMS首页频道列表文章伪静态规则及方法							
						
						
							
								
									时间: 2019-07-17 22:36								
								
									阅读: 次
								
								
									作者:素材无忧网
								
                                
                             
                                
							
						 
						
							RewriteEngine On 
	RewriteBase / 
	 
	RewriteRule ^list-([0-9]+)\.html$ /plus/list.php?tid=$1 
	RewriteRule ^list-([0-9]+)-([0-9]+)-([0-9]+)\.html$ /plus/list.php?tid=$1&totalresult=$2&PageNo=$3 
	RewriteRule ^view-([0-9]+)-1\.html$ /plus/view.php?arcID=$1 
	RewriteRule ^view-([0-9]+)-([0-9]+)\.html$ /plus/view.php?aid=$1&pageno=$2 
	 
	文件写法。 
	 
	/include/下的channelunit.func.php修改 
	 
	第一处: 
	if($isdefault==-1) 
	{ 
	//动态 
	$reurl = $GLOBALS['cfg_phpurl']."/list.php?tid=".$typeid; 
	} 
	 
	改为: 
	if($isdefault==-1) 
	{ 
	//动态 
	//$reurl = $GLOBALS['cfg_phpurl']."/list.php?tid=".$typeid; 
	//veepic.com修改于2009.08.31 
	if($cfg_rewrite == 'Y') 
	{ 
	$reurl = $GLOBALS['cfg_cmsurl']."/list-{$typeid}.html"; 
	} 
	else 
	{ 
	$reurl = $GLOBALS['cfg_phpurl']."/list.php?tid=".$typeid; 
	} 
	} 
	 
	第二处: 
	 
	global $cfg_typedir_df; 
	改为: 
	global $cfg_typedir_df,$cfg_rewrite; 
	 
	第三处: 
	if($rank!=0 || $ismake==-1 || $typeid==0 || $money>0) 
	{ 
	//动态文章 
	if($cfg_rewrite == 'Y') 
	{ 
	return $GLOBALS["cfg_plus_dir"]."/view-".$aid.'-1.html'; 
	} 
	else 
	{ 
	return $GLOBALS['cfg_phpurl']."/view.php?aid=$aid"; 
	} 
	} 
	else 
	改为: 
	if($rank!=0 || $ismake==-1 || $typeid==0 || $money>0) 
	{ 
	//动态文章 
	if($cfg_rewrite == 'Y') 
	{ 
	//veepic.com修改于2009.8.31 
	//return $GLOBALS["cfg_plus_dir"]."/view-".$aid.'-1.html'; 
	return $GLOBALS["cfg_cmsurl"]."/view-".$aid.'-1.html'; 
	} 
	else 
	{ 
	return $GLOBALS['cfg_phpurl']."/view.php?aid=$aid"; 
	} 
	} 
	else 						
						
						
						
						
						
						
						
							
							
							标签: