0

我是网络编程新手,想在我的网站上设置 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 时,我得到一个未找到服务器的错误。

我哪里错了?我错过了一个文件吗?

4

1 回答 1

0

看起来你正在学习编写代码。如果是这种情况,请使用您的主机文件创建自定义域名:https://en.wikipedia.org/wiki/Hosts_(file)

可能在 %SystemRoot%\system32\drivers\etc\hosts

编辑主机文件非常容易。

如果您正在学习管理计算机(通过设置 iis、配置 IP 地址、域名等),那么您希望继续学习 DNS。SeverFault 可能有更多建议,我不确定。

于 2013-04-21T00:35:54.673 回答