用户使用Godaddy的windows的主机,打开网站时必须在域名后添加index.aspx才可以打开,郁闷呀。
index.aspx不在默认页面里面,你可以加一个index.htm 然后加一个转向在里面转向到index.aspx就可以了,可以用下面的代码转向,把网址修改为index.aspx就可以了
<html>
<head>
<noscript>
<META HTTP-EQUIV="Refresh" CONTENT="0;URL=http://bbs.idcspy.com">
</noscript>
<script language="JavaScript">
window.top.location.replace ( "http://bbs.idcspy.com" ) ;
</script>
</head>
</html>
一般不建议使用JAVASCRIPT做转向, 因为某些浏览器不支持某些JAVASCRIPT代码,也有些用户会因为安全原因禁用脚本,这样的话客户就无法访问到INDEX.ASPX了,所以 用301做服务器转向比较合适。代码如下:
asp:
<%
Response.Status="301 Moved Permanently"
Response.AddHeader "Location", "http://www.XXXX.com/"
Response.End
%>
--------------------------------
Php:
header("HTTP/1.1 301 Moved Permanently");
header("Location:http://www.XXXX.com/);
exit();
--------------------------------------
ASP.NET:
<script runat="server">
private void Page_Load(object sender, System.EventArgs e)
{
Response.Status = "301 Moved Permanently";
Response.AddHeader("Location","http://www.XXXX.com/);
}
</script>
如果是使用.NET2.0的话,还可以用WEB.CONFIG来作URL重写或转向
以上就是Godaddy添加的默认文档了,如果还有问题可论坛询问。