2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

IISサーバのlocalhostにディレクトリを追加する

Last updated at Posted at 2020-06-27

#記事一覧
Visual StudioのASP.NET Core MVC で Web アプリを作成してみた(記事一覧)

#localhostのルートディレクトリ
IISのルートディレクトリは、「C:\inetpub\wwwroot」となる。
そのため、http://localhost/ にアクセスした場合、ルートディレクトリ上の「iisstart.htm」が表示される。

#IISのlocalhostにディレクトリを追加する
IISのルートディレクトリに任意のディレクトリ「IIS_Page」を追加して、任意のHTML「index.htm」を追加する。
C:\inetpub\wwwroot\IIS_Page\index.htm

index.htm
<html lang="ja">
<head>
<title>Tabに表示されるタイトル</title>
<meta charset="UTF-8" />
</head>

<center>
<h1>rainのページ </h1></center>
<hr>
</center> 
</body>

</html>

#追加したディレクトリにアクセスする
http://localhost/IIS_Page/ にアクセスすると、配置したHTMLが表示される。
追加したディレクトリにアクセスする.PNG

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?