一空间多域名绑定不同目录方法
时间:2009-03-09 18:32:00
一空间多域名绑定3种方法,HTML代码格式:
<html>
<script language=javascript>
if(this.location=="https://www.aspxhome.com/")
{this.location.href="index1.htm";}
else
if(this.location=="http://aspxhome.com/")
{this.location.href="index1.htm";}
else
if(this.location=="http://www.cidianwang.com/")
{this.location.href="blog";}
else
if(this.location=="http://wendahu.com/")
{this.location.href="blog";}
</script>
</html>
ASP代码格式一:
<%
host=lcase(request.servervariables("HTTP_HOST"))
SELECT CASE host
CASE "cidianwang.com"
response.redirect "blog/"
CASE www.aspxhome.com
response.redirect "asp.asp"
CASE ELSE
response.redirect "index.htm"
END SELECT
%>
ASP代码格式二:
<%
Dim StrDomain
StrDomain=Request.ServerVariables("SERVER_NAME")
'获得包含域名的字符串
select case StrDomain
case "www.aspxhome.com"
Response.redirect "https://www.aspxhome.com/aaa/index.asp"
case "www.cidianwang.com"
Response.redirect "http://www.cidianwang.com/"
case else
Response.write "未知错误"
end select
%>
标签:域名,绑定,空间,代码
0
投稿
猜你喜欢
PyQt5 QSerialPort子线程操作的实现
2023-08-21 13:07:28
JS实现课程表小程序(仿超级课程表)加入自定义背景功能
2024-04-16 09:35:09
限制文本框只能输入数字和小数点
2009-05-29 18:19:00
Python获取网络图片和视频的示例代码
2023-06-24 08:37:58
mysql安装图解总结
2024-01-15 04:12:21
python判断设备是否联网的方法
2022-05-03 12:34:55
Golang实现断点续传功能
2023-07-24 08:19:26
python with (as)语句实例详解
2023-04-12 04:15:09
Python实现曲线拟合的最小二乘法
2022-03-24 16:13:25
Window环境下Scrapy开发环境搭建
2023-08-24 01:14:58
Oracle基本PLSQL的使用实例详解
2024-01-21 11:17:41
在pytorch 中计算精度、回归率、F1 score等指标的实例
2022-08-10 06:28:18
python中pd.Series()函数的使用
2023-10-04 08:28:05
Python Django切换MySQL数据库实例详解
2024-01-21 02:02:47
python 专题九 Mysql数据库编程基础知识
2024-01-19 23:06:04
python 字符串详解
2022-09-27 04:44:25
Go语言Mock使用基本指南详解
2024-05-08 10:15:03
解决python 未发现数据源名称并且未指定默认驱动程序的问题
2022-07-18 14:34:48
SQL Server 2005实现数据库缓存依赖
2009-05-07 13:20:00
MYSQL教程:数据列类型与查询效率
2009-02-27 15:37:00