<%
host=lcase(request.servervariables("HTTP_HOST"))
SELECT CASE host
Just change the CASE to your domains
CASE "www.designbliss.com.au"
Below is the redirect command
response.redirect "au/"
CASE "designbliss.com.au"
response.redirect "au/"
CASE "e.free-bliss.com"
response.redirect "front.asp"
CASE "www.website-design-australia.com"
response.redirect "wda/"
CASE "website-design-australia.com"
response.redirect "wda/"
We use CASE ELSE to fix any other requests
CASE ELSE
response.redirect "front.asp"
END SELECT
%>
我最近的应用
复制代码 代码如下:
<%
host=lcase(request.servervariables("HTTP_HOST"))
SELECT CASE host
CASE "www.huaihaiw.com"
response.redirect "index2.asp"
CASE "xx.huaihai.tv"
response.redirect "index1.asp"
CASE ELSE
response.redirect "index2.asp"
END SELECT
%>
最后
以上就是正直胡萝卜最近收集整理的关于多域名一网站时如果返回最原来的域名的全部内容,更多相关多域名一网站时如果返回最原来内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复