Я пытаюсь опубликовать свое приложение на IIS, но когда я пытаюсь обновить, я получаю
Ошибка
The Web server is configured to not list the contents of this directory..
Путь приложения
E:\tutorial\Angular Login\front\clientapi
Угловая сборка
ng build --prod --base-href=/eclipse/
После сборки приложения я получаю следующий вывод в папку dist
Я копирую папку clientapi и вставляю ее в папку C: \ ecilpse
Затем опубликуйте на IIS
После этого я добавлю файл web.config в eclipse папка
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Angular Routes" stopProcessing="true">
<match url=".*" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="/eclipse/" />
<!--<action type="Rewrite" url="/" />-->
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>