当前位置:首页 > ASP教程 > 存储过程

多域名一网站时如果返回最原来的域名

<% 
host=lcase(request.servervariables("HTTP_HOST")) 
SELECT CASE host 
Just change the CASE to your domains 
CASE "www.51frw.cn.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.51frw.cn" 
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.51frw.cn" 
response.redirect "index2.asp" 
CASE "xx.huaihai.tv" 
response.redirect "index1.asp" 
CASE ELSE 
response.redirect "index2.asp" 
END SELECT 
%> 

【说明】本文章由站长整理发布,文章内容不代表本站观点,如文中有侵权行为,请与本站客服联系(QQ:254677821)!

相关教程推荐

其他课程推荐