DedeCMS(织梦内容管理系统)是一款流行的PHP开源网站管理系统。Tag伪静态化是指将动态生成的网页URL转换为看似静态的URL格式,以提高网站的SEO效果和用户体验。
适用于所有使用DedeCMS搭建的网站,特别是对SEO有较高要求的网站。
RewriteEngine On
RewriteBase /
RewriteRule ^tag-(.*)\.html$ tag.php?/$1 [L]
location /tag {
rewrite ^/tag-(.*)\.html$ /tag.php?/$1 last;
}
在DedeCMS的include/common.inc.php
文件中添加以下代码:
if (preg_match('/^tag-(.*)\.html$/', $_SERVER['REQUEST_URI'], $matches)) {
header('Location: tag.php?/' . $matches[1]);
exit();
}
通过以上方法,你可以成功实现DedeCMS的Tag伪静态化,提升网站的SEO效果和用户体验。
领取专属 10元无门槛券
手把手带您无忧上云