惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Recent Announcements
Recent Announcements
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
B
Blog
T
The Blog of Author Tim Ferriss
J
Java Code Geeks
腾讯CDC
D
Docker
G
Google Developers Blog
D
DataBreaches.Net
雷峰网
雷峰网
Blog — PlanetScale
Blog — PlanetScale
S
SegmentFault 最新的问题
The Cloudflare Blog
有赞技术团队
有赞技术团队
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Stack Overflow Blog
Stack Overflow Blog
大猫的无限游戏
大猫的无限游戏
量子位
美团技术团队
aimingoo的专栏
aimingoo的专栏
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Engineering at Meta
Engineering at Meta
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More

月光博客

AI编程从零开始:环境配置到开发调试-月光博客 母亲被保健品诈骗-月光博客 向身体低头,向岁月妥协:我的高血压“还债日记” -月光博客 月光博客电子书:《信息安全指南》 谷歌发布2025年度搜索排行榜 中国2025社会热点大事记 2025年十大流行语发布 7天3次,骗子骗走我母亲95万元 “技术男”设三重安全墙,母亲95万存款还是被骗走了 电信诈骗后的复盘:母亲的95万元,是怎么从手机银行里消失的 母亲被电信诈骗95万元的全过程 阿根廷警察被谷歌街景相机拍到裸照 网信办开展“清朗·整治恶意挑动负面情绪问题”专项行动 翟欣欣敲诈勒索案一审获刑12年 《绝命毒师》影评:力工觉醒后的梭哈至死 《人工智能生成合成内容标识办法》正式施行 用AI分析你的财务信息 腾讯子公司实习HR怒怼求职者后被开除 OpenAI发布最强模型GPT-5,免费向所有用户开放 用AI解构你的日记 用AI分析你的游戏偏好 用AI分析你的观影偏好 用AI分析你的听歌偏好 《白鹿原》人物分析:乱世浮沉中的人性剖析 乌托邦的捷径:让AI治理“失败国家” 苹果AI的“路径错误”:为什么它在大模型时代掉队了? 《暗黑破坏神3》第35赛季开荒指南 我对特朗普的看法 欧·亨利十大经典小说鉴赏 HBO电视剧《最后生还者》第二季影评
多个绑定多域名的ASP代码
月光 · 2005-07-18 · via 月光博客

如果只有一个ASP空间,而你又想放置多个多个站点,这些代码可以帮到你。

第一个
<%
if Request.ServerVariables("SERVER_NAME")="www.williamlong.info" then
 response.redirect "williamlong/index.htm"
else
 response.redirect "index2.htm"
end if
%>

第二个
<%
select case request.servervariables("http_host")
case "www.williamlong.info" '1
 Server.Transfer("v3.htm")
case "www.williamlong.info" '1
 Server.Transfer("v3.htm")
case "www.moon-soft.com" '2
 Server.Transfer("i.htm")
case "www.moon-blog.com" '3
 Server.Transfer("moon-blog.htm")
...... 继续添加 ......
end select
%>

第三个
<%
if instr(Request.ServerVariables("SERVER_NAME"),"www.williamlong.info")>0 then
 response.redirect "index.asp"
elseif instr(Request.ServerVariables("SERVER_NAME"),"www.moon-soft.com")>0 then
 response.redirect "x/index.asp"
elseif instr(Request.ServerVariables("SERVER_NAME"),"www.moon-blog.com")>0 then
 response.redirect "index3.asp"
end if
%>

第四个
<%
if Request.ServerVariables("SERVER_NAME")="www.williamlong.info" then
 response.redirect "index1.asp"
elseif Request.ServerVariables("SERVER_NAME")="www.moon-soft.com" then
 response.redirect "index2.asp"
elseif Request.ServerVariables("SERVER_NAME")="www.moon-blog.com" then
 response.redirect "index3.asp"
end if
%>

第五个
<%
if Request.ServerVariables("SERVER_NAME")="www.williamlong.info" then
 Server.Transfer("williamlong.htm")
elseif Request.ServerVariables("SERVER_NAME")="www.moon-soft.com" then
 Server.Transfer("moon.htm")
elseif Request.ServerVariables("SERVER_NAME")="www.moon-blog.com" then
 Server.Transfer("moon-blog.htm")
else
 Server.Transfer("other.htm")
end if
%>
 

多个绑定多域名的ASP代码