asp
国内很多域名注册商提供隐藏域名URL转发服务,大概每年几十元,我用ASP写了一个这样功能的代码,以下含义为:当主机头为127.0.0.1的时候,隐藏转发到www.wangchao.info;大家可以根据需要自行修改使用。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| <%
dim url,redirectUrl
url=request.ServerVariables("HTTP_HOST")
if url="127.0.0.1" then
redirectUrl="http://www.wangchao.info"
end if
%>
<frameset framespacing="0" border="0" rows="0,100%" frameborder="0">
<frame name="top" scrolling="no" noresize src="nothing.html" marginwidth="0" marginheight="0">
<frame name="main" src="<%=redirectUrl%>" marginwidth="0" marginheight="0" scrolling="auto">
<noframes>
<body>
<p>此网页使用了框架,但您的浏览器不支持框架,推荐使用FireFox、Chrome、搜狗、360等主流浏览器。</p>
</body>
</noframes>
</frameset> |
未经允许不得转载:王超博客 » ASP隐藏域名URL转发代码 |