我是网络编程新手,想在我的网站上设置 Hello World。我有 web.config 作为
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.web>
</system.web>
</configuration>
和 index.html 作为
<html>
<head>
<title>Sample "Hello, World" Application</title>
</head>
<body bgcolor=white>
<table border="0" cellpadding="10">
<tr>
<td>
<h1>Sample "Hello, World" Application</h1>
</td>
</tr>
</table>
<p>This is the home page for World. </p>
</body>
</html>
但是,当我访问 www.mywebsite.com 时,我得到一个未找到服务器的错误。
我哪里错了?我错过了一个文件吗?