我们都知道,伪静态就是建立在动态的基础上的
当我们做好了伪静态后,在地址栏上打开动态链接时也是能正常打开的
如果不想让别人或者搜索引擎还能打开动态链接,统一权重到伪静态url上时,我们可以给动态链接上做个301跳转
比如织梦的栏目列表页动态链接是
https://www.xxx.com/plus/list.php?tid=1
打开动态链接时我们希望301重定向到伪静态链接上去
https://www.xxx.com/web/
打开 /plus/list.php 找到
if($cfg_rewrite == 'Y')
{
...中间代码省略
}
在它里面加入
if(stripos(GetCurUrl(), '.php'))
{
$typeurl = GetOneTypeUrlA($dsql->GetOne("SELECT * FROM `dede_arctype` WHERE id=$tid"));
header("Location: ".$typeurl, TRUE, 301);
exit();
}
打开 /plus/view.php 找到
if($cfg_rewrite == 'Y')
{
...中间代码省略
}
//在它里面加入
if(stripos(GetCurUrl(), '.php'))
{
$url = GetOneArchive($aid);
header("Location: ".$url['arcurl'], TRUE, 301);
exit();
}
版权声明: 本站资源均来自互联网或会员发布,如果侵犯了您的权益请与我们联系,我们将在24小时内删除!谢谢!