Localhosta attıgım dosyalardan sonra adres satırına localhost yazdım karşıma şu ekran çıkıyor.
Dosya yolu : C:/inetpub/wwwroot

Web.Config Dosyası:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<directoryBrowse enabled="false" />
<rewrite>
<rules>
<clear />
<!-- rule name="static rewrite" enabled="false" patternSyntax="Wildcard" stopProcessing="true">
<match url="*/static/*" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false" />
<action type="Rewrite" url="/static/{R:0}" />
</rule -->
<rule name="non www to www" stopProcessing="true">
<match url="(.*)" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false">
<add input="{HTTP_HOST}" pattern="^localhost/$" negate="true" />
</conditions>
<action type="Redirect" url="http://localhost/{R:1}" />
</rule>
<rule name="tomcat" enabled="true" stopProcessing="true">
<match url="(.*)" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
</conditions>
<action type="Rewrite" url="http://localhost:8100/{R:1}" />
</rule>
</rules>
<rewriteMaps>
<rewriteMap name="beybim" />
</rewriteMaps>
</rewrite>
<httpProtocol>
<customHeaders>
<add name="Access-Control-Allow-Origin" value="*" />
</customHeaders>
</httpProtocol>
<staticContent>
<clientCache cacheControlMode="DisableCache" />
</staticContent>
</system.webServer>
</configuration>