服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|JAVA教程|ASP教程|

服务器之家 - 编程语言 - ASP教程 - 多域名一网站时如果返回最原来的域名

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

2019-10-30 15:42asp教程网 ASP教程

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

<%  
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.zzvips.com"  
response.redirect "index2.asp"  
CASE "xx.huaihai.tv"  
response.redirect "index1.asp"  
CASE ELSE  
response.redirect "index2.asp"  
END SELECT  
%> 

延伸 · 阅读

精彩推荐