diff --git a/src/system/archive/archives.class.php b/src/system/archive/archives.class.php
index c0bcf0fd..db3af124 100755
--- a/src/system/archive/archives.class.php
+++ b/src/system/archive/archives.class.php
@@ -861,7 +861,7 @@ class Archives
if ($cfg_rewrite == 'Y') {
$revalue .= "$v";
} else {
- $revalue .= "$v";
+ $revalue .= "$v";
}
} else {
if ($pageNo == $i) {
@@ -870,7 +870,7 @@ class Archives
if ($cfg_rewrite == 'Y') {
$revalue .= "$v";
} else {
- $revalue .= "$v";
+ $revalue .= "$v";
}
}
@@ -884,20 +884,20 @@ class Archives
if ($cfg_rewrite == 'Y') {
$revalue .= "";
} else {
- $revalue .= "";
+ $revalue .= "";
}
} else {
if ($pageNo == $i) {
if ($cfg_rewrite == 'Y') {
$revalue .= "";
} else {
- $revalue .= "";
+ $revalue .= "";
}
} else {
if ($cfg_rewrite == 'Y') {
$revalue .= "";
} else {
- $revalue .= "";
+ $revalue .= "";
}
}
}
@@ -938,7 +938,7 @@ class Archives
if ($cfg_rewrite == 'Y') {
$PageList .= "
上页";
} else {
- $PageList .= "上页";
+ $PageList .= "上页";
}
}
}
@@ -959,7 +959,7 @@ class Archives
if ($cfg_rewrite == 'Y') {
$PageList .= "{$n}";
} else {
- $PageList .= "{$n}";
+ $PageList .= "{$n}";
}
} else {
$PageList .= "{$n}";
@@ -970,7 +970,7 @@ class Archives
if ($cfg_rewrite == 'Y') {
$PageList .= "下页";
} else {
- $PageList .= "下页";
+ $PageList .= "下页";
}
} else {
$PageList .= "下页";
diff --git a/src/system/archive/taglist.class.php b/src/system/archive/taglist.class.php
index db1cd4b5..dc6a8bdf 100755
--- a/src/system/archive/taglist.class.php
+++ b/src/system/archive/taglist.class.php
@@ -529,6 +529,7 @@ class TagList
*/
function GetPageListDM($list_len, $listitem = "info,index,end,pre,next,pageno")
{
+ global $cfg_rewrite;
$prepage = '';
$nextpage = '';
$prepagenum = $this->PageNo - 1;
@@ -545,6 +546,13 @@ class TagList
}
$maininfo = "{$totalpage}页".$this->TotalResult."条";
$purl = $this->GetCurUrl();
+ //开启伪静态对规则替换
+ if ($cfg_rewrite == 'Y') {
+ $purl = str_replace("/apps", "", $purl);
+ $nowurls = preg_replace("/", ".php?", $purl);
+ $nowurls = explode("?", $nowurls);
+ $purl = $nowurls[0];
+ }
$purl .= "?/".urlencode($this->Tag);
//获得上页和下页的链接
if ($this->PageNo != 1) {
@@ -588,6 +596,11 @@ class TagList
if (preg_match('/next/i', $listitem)) $plist .= $nextpage;
if (preg_match('/end/i', $listitem)) $plist .= $endpage;
if (preg_match('/info/i', $listitem)) $plist .= $maininfo;
+ //伪静态标签分页
+ if ($cfg_rewrite == 'Y') {
+ $plist = str_replace("?/", "", $plist);
+ $plist = preg_replace("/&pageno=(\d+)/i", "/\\1", $plist);
+ }
return $plist;
}
/**
diff --git a/src/system/taglib/tag.lib.php b/src/system/taglib/tag.lib.php
index 3c7edb5a..4b062bcc 100755
--- a/src/system/taglib/tag.lib.php
+++ b/src/system/taglib/tag.lib.php
@@ -11,7 +11,7 @@ if (!defined('DEDEINC')) exit ('dedebiz');
*/
function lib_tag(&$ctag, &$refObj)
{
- global $dsql, $envs, $cfg_cmsurl, $cfg_tags_dir;
+ global $dsql, $envs, $cfg_cmsurl, $cfg_tags_dir ,$cfg_rewrite;
$attlist = "row|30,sort|new,getall|0,typeid|0,ishtml|0";
FillAttsDefault($ctag->CAttribute->Items, $attlist);
extract($ctag->CAttribute->Items, EXTR_SKIP);
@@ -54,6 +54,8 @@ function lib_tag(&$ctag, &$refObj)
$row['tag'] = dede_htmlspecialchars($row['tag']);
if (isset($envs['makeTag']) && $envs['makeTag'] == 1 || $ishtml == 1) {
$row['link'] = $cfg_cmsurl.$tagsdir."/".$row['id']."/";
+ } else if ($cfg_rewrite == 'Y') {
+ $row['link'] = $cfg_cmsurl."/tags/".$row['id'];
} else {
$row['link'] = $cfg_cmsurl."/apps/tags.php?/".$row['id'];
}