Web プログラミングは初めてで、自分の Web サイトに 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 にアクセスすると、サーバーが見つからないというエラーが表示されます。
どこが間違っていますか?ファイルがありませんか?