随星光降临 發表於 2023-8-21 00:00:00

dedecms tag标签伪静态的修改方法

<p>
        <span style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'>一、dede后台开启伪静态 </span><br style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'><br style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'><span style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'>二、修改 /include/taglib/tag.lib.php </span><br style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'><br style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'><span style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'>找到 $row['link'] = $cfg_cmsurl."/tags.php?/".urlencode($row['keyword'])."/"; </span><br style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'><span style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'>改成 $row['link'] = $cfg_cmsurl."/tags/".urlencode($row['keyword']).".html"; </span><br style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'><span style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'>三、打开templets/default/taglist.htm </span><br style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'><br style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'><span style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'>找到 </span><br style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'><span style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'>&lt;strong&gt;当前位置:&lt;/strong&gt;:&lt;a href="{dede:global.cfg_cmsurl/}/"&gt;主页&lt;/a&gt; &gt; &lt;a href='tags.php'&gt;TAG标签&lt;/a&gt; &gt; {dede:field.title /} </span><br style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'><span style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'>修改为 </span><br style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'><span style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'>&lt;strong&gt;当前位置:&lt;/strong&gt;:&lt;a href="{dede:global.cfg_cmsurl/}/"&gt;主页&lt;/a&gt; &gt; &lt;a href='/tags.html'&gt;TAG标签&lt;/a&gt; &gt; {dede:field.title /} </span><br style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'><span style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'>四、httpd.ini 文件里加 </span><br style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'><br style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'><span style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'>RewriteRule ^(.*)/tags\.html $1/tags\.php </span><br style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'><span style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'>RewriteRule ^(.*)/tags/(.*).html $1/tags\.php\?$2 </span><br style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'><br style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'><span style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'>搞定啦~</span><br style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'><br style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'><strong style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'>新版本可以用下面的方法:</strong><br><br><span style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'>一、dede后台开启伪静态 </span><br style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'><br style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'><span style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'>二、修改 /include/taglib/tag.lib.php,找到: </span><br style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'><br style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'><span style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'>$row['link'] = $cfg_cmsurl."/tags.php?/".urlencode($row['keyword'])."/";改成 </span><br style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'><br style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'><span style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'>$row['link'] = $cfg_cmsurl."/tags/".urlencode($row['keyword']).".html";三、打开templets/default/taglist.htm,找到: </span><br style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'><br style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'><span style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'>&lt;strong&gt;当前位置:&lt;/strong&gt;:&lt;a href="{dede:global.cfg_cmsurl/}/"&gt;主页&lt;/a&gt; &gt; &lt;a href='tags.php'&gt;TAG标签&lt;/a&gt; &gt; {dede:field.title /}修改为 </span><br style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'><br style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'><span style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'>&lt;strong&gt;当前位置:&lt;/strong&gt;:&lt;a href="{dede:global.cfg_cmsurl/}/"&gt;主页&lt;/a&gt; &gt; &lt;a href='/tags.html'&gt;TAG标签&lt;/a&gt; &gt; {dede:field.title /}四、httpd.ini 文件里加 </span><br style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'><br style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'><span style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'>RewriteRule ^(.*)/tags\.html $1/tags.php;RewriteRule ^(.*)/tags/(.*).html $1/tags.php?/$2; </span><br style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'><br style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'><span style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'>然后进入dede后台更新缓存后,就搞定了。</span></p>
頁: [1]
查看完整版本: dedecms tag标签伪静态的修改方法