z-blog首页标题(title)与分类页标题(title)相同的原因是因为你安装了TitleSEO插件导致的,这样不仅不利于用户体验,而且对搜索引擎也极不友好,所以解决方法要从这个插件下手。

找到TitleSEO插件的所在目录,z-blog的所在根目录->plugin目录->TitleSEO文件包,找到include.asp文件,然后找到如下代码

我们打开include.asp这个文件,找到下面这段代码:

Function TitleSEO_Catalog(ByRef Ftemplate)

 If IsEmpty(Ftemplate) Then Exit Function

  If Request.QueryString("cate") <> "" Or _

    Request.QueryString("auth") <> "" Or _

    Request.QueryString("date") <> "" Or _

    Request.QueryString("tags") <> "" Then

    Ftemplate = TitleSEO_ReplaceCode(Ftemplate,"<#BlogTitle#> <#ZC_MSG044#> <#ZC_BLOG_TITLE#>")

   Else

     Call TitleSEO_Default(Ftemplate)

   End If

  End Function

替换为以下代码即可:

Function TitleSEO_Catalog(ByRef Ftemplate)

 If IsEmpty(Ftemplate) Then Exit Function

 If  Request.QueryString("cate") <> "" Or Request.QueryString("auth") <> "" Or Request.QueryString("date") <> "" Or Request.QueryString("tags") <> "" Then

  Ftemplate = TitleSEO_ReplaceCode(Ftemplate,"<#BlogTitle#> <#ZC_MSG044#> <#ZC_BLOG_TITLE#>")

elseif Request.QueryString("page") <> "" then

        Call TitleSEO_Default(Ftemplate)

else

        Ftemplate = TitleSEO_ReplaceCode(Ftemplate,"<#BlogTitle#> <#ZC_MSG044#> <#ZC_BLOG_TITLE#>")

end if

End Function