5,450 questions
It seems like your application is unable to find the default document when accessed without a specific file name. You can try the following steps:
- Ensure that the default document is set correctly in your project. To do this, right-click on the project in Visual Studio, select "Properties", and under the "Web" tab, make sure that "Welcome.HTML" is listed as the "Start Action" and as the first item in the "Specific Page" section.
- Check the web.config file in your project to ensure that the default document is listed correctly. Look for a line similar to the following:
<defaultDocument>
<files>
<add value="Welcome.HTML" />
</files>
</defaultDocument>
```
If this line is missing or incorrect, add or modify it accordingly.
1. Ensure that the default document is set correctly in the Azure portal. Go to the "Configuration" blade for your app service, scroll down to the "Default documents" section, and ensure that "Welcome.HTML" is listed as the first item.
1. Try accessing the root URL again. If the issue persists, check the Azure portal logs for any errors or warnings that may help identify the issue.
I hope this helps you resolve the issue.
----------
***`I hope I was able to help! Don't forget to mark my answer as accepted if it was useful to you. Have a great day!`***