dedecms标签页URL自定义修改
最近在研究DEDECMS,总想把他用精,一边还是学习PHP现在能看懂一些基本的语句语法以及部分函数
所以就迫不及待的慢慢尝试着修改这修改那的,正转
主机环境linux主机,支持.htaccess
<必须支持.htaccess 才可以实现>
打开文件
\include\inc_arcpart_view.php
\include\inc_pubtag_make.php
\include\inc_taglist_view.php
查找
/tag.php?/”.urlencode($row[
修改为
/tag/”.urlencode($row[
打开文件
\include\inc_channel_unit_functions.php
查找
/tag.php?/{$row[’keyword’]}/
修改为
/tag/{$row[’keyword’]}/
最后上传一.htaccess 文件至根目录
内容为
RewriteEngine On
RewriteBase /
# Rewrite
RewriteRule ^tag/(.+)/$ tag.php?/$1/