我们都知道,伪静态就是建立在动态的基础上的

当我们做好了伪静态后,在地址栏上打开动态链接时也是能正常打开的

如果不想让别人或者搜索引擎还能打开动态链接,统一权重到伪静态url上时,我们可以给动态链接上做个301跳转

栏目列表页301重定向实现教程

比如织梦的栏目列表页动态链接是

/plus/list.php?tid=1

打开动态链接时我们希望301重定向到伪静态链接上去

/notes/

打开 /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();

}

如图

 

 

内容页301重定向实现教程

比如织梦的内容页动态链接是

 

/plus/view.php?aid=1

 

打开动态链接时我们希望301重定向到伪静态链接上去

 

/notes/dede-safe.html

 

打开 /plus/view.php 找到

if($cfg_rewrite == 'Y')

{

...中间代码省略

}

在它里面加入

if(stripos(GetCurUrl(), '.php'))

{

$url = GetOneArchive($aid);

header("Location: ".$url['arcurl'], TRUE, 301);

exit();

}

如图