2012-09-28 245 views
1

位一个IIS新手,所以这里的云:我想运行一个网站从IIS 7.5:网站在IIS 7.5

in the boerekneiter.com folder there is a file boerekneiter.htm

的boerekneiter.com文件夹中包含文件boerekneiter.htm

HTML:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml"> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> 
<title>hi there</title> 
</head> 
<body> 
this is the body 
</body> 
</html> 

不幸的是,当我去http://www.boerekneiter.com:8000/铬说:

Oops! Google Chrome could not find www.boerekneiter.com:8000 

我该如何解决这个问题?我是否需要安装其他过滤器或组件?

这是唯一的网站我在IIS:

enter image description here

+0

在本地机器上,这将是http:// localhost:8000。 –

回答

1

这不是一个IIS问题不亚于一个DNS问题。

www.boerekneiter.com只是您的网站在IIS中的名称。如果您尚未设置DNS将该域指向该服务器的IP,则无法通过URL提供服务。正如评论中所述,您可以通过URL localhost:8000测试对服务器的访问,或将“localhost”替换为服务器的IP地址。您也可以设置您的HOSTS,以便暂时将www.boerekneiter.com对服务器的请求发送给服务器。

+0

localhost也未找到 – Pindakaas