aspcms生成静态页面怎么正确做好301重定向

aspcms生成静态页面怎么正确做好301重定向,第1张

只要支持脚本执行的都可以使用伪静态或者后台设置跳转

如果你服务器本身就不支持脚本,你加什么规则都没用

ASP重定向代码(首页为index.asp):

<%

if request.ServerVariables("HTTP_HOST")="021jz.com.cn" then

Response.Status="301 Moved Permanently"

Response.AddHeader "Location","http://www.021jz.com.cn"

Response.End

end if

%>

在你的伪静态规则进行301跳转

这个是我网站原来url变了后写的规则

rewrite ^([^\.]*)/content_detail_([0-9]+)\.html$ $1/content/detail/$2.html permanent


欢迎分享,转载请注明来源:夏雨云

原文地址:https://www.xiayuyun.com/zonghe/209323.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2023-04-04
下一篇2023-04-04

发表评论

登录后才能评论

评论列表(0条)

    保存