织梦伪静态就是建立在动态的基础上的,当我们做好了伪静态后,在地址栏上打开动态链接时也是能正常打开的
如果不想让别人或者搜索引擎还能打开动态链接,统一权重到伪静态url上时,我们可以给动态链接上做个301跳转。
比如织梦的栏目列表页动态链接是
https://www.CUOxin.com/plus/list.php?tid=1
打开动态链接时我们希望301重定向到伪静态链接上去
https://www.CUOxin.com/notes/
1.打开 /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();} |
如图
比如织梦的内容页动态链接是
https://www.CUOxin.com/plus/view.php?aid=1
打开动态链接时我们希望301重定向到伪静态链接上去
https://www.CUOxin.com/note/1.html
1.打开 /plus/view.php 找到
if($cfg_rewrite == 'Y'){...中间代码省略} |
在它里面加入
if(stripos(GetCurUrl(), '.php')){$url = GetOneArchive($aid);header("Location: ".$url['arcurl'], TRUE, 301);exit();} |
如图
完成。
新闻热点
疑难解答