动态域名的源程序!!(100分)

  • 主题发起人 主题发起人 joyman
  • 开始时间 开始时间
J

joyman

Unregistered / Unconfirmed
GUEST, unregistred user!
现小弟要搞一个这样的东东,例如:类似[red]3322.org或花生壳[/red]的服务端源程序,各位大哥有吗!谢谢了
 
我的理确,动态域名(只要把下面的动态生成指向网页,就应该能行哈)
如:
test.xxx.com
abc.xxx.com //本机记录了abc.xxx.com的动态ip
是先解析xxx.com,
你用浏览器访问时,也肯定是先访问xxx.com
然后通过http协议,得到abc.xxx.com ,再查表得到动态ip,并通过http协议生成一个页面指向动态ip的页面

下面这一段是asp的二级域名绑定
<%
from=lcase(Request.ServerVariables(&quot;HTTP_HOST&quot;))
if left(from,4)=&quot;www.&quot; then
Response.redirect(&quot;index.asp&quot;)'此处为网站首页地址
else
response.Write( &quot;<frameset><frame src=&quot;&quot;blog.asp?domain=&quot;&from&&quot;&quot;&quot;></frameset>&quot;)
end if
%>
 
后退
顶部