如果你服务器本身就不支持脚本,你加什么规则都没用
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
欢迎分享,转载请注明来源:夏雨云
评论列表(0条)