在PHP中绑定域名
2017-6-13 乱云飞 代码 评论(0) 浏览(1352) 标签: 绑定域名 php代码
$uri = $_SERVER['REQUEST_URI']; if($_SERVER["HTTP_HOST"] != "gantong.cc")//绑定域名 { header("HTTP/1.1 301 Moved Permanently"); header("Location:http://gantong.cc$uri"); }
在ASP程序中绑定域名,只能用绑定的域名访问网站。
2016-2-14 乱云飞 代码 评论(0) 浏览(1607) 标签: 绑定域名 ASP代码
<%if Request.ServerVariables("SERVER_NAME")<>"80c.cc" then
response.redirect "http://80c.cc/"
end if
%>
----------------------------------------------------------------
下面这几行代码是301重定向,效果应该优于上面的。
<%
if Request.ServerVariables("SERVER_NAME")<>"80c.cc" then
Response.Status="301 Moved Permanently"
Response.AddHeader "Location",http://80c.cc/
end if
%>