Farid Huseynov
Farid Huseynov

Reputation: 159

Web app on azure doesn't show my asp.net core web app after I have published it without any problems

Landing Page of my web app

I have published my asp.net core mvc project in the Azure as web app, however it doesn't show anything. Instead of this it just shows the landing page as there was no code (which is not the case). I have checked few points on stackoverflow, but couldn't find anything, could anyone please help me with that?

Upvotes: 2

Views: 625

Answers (1)

Joey Cai
Joey Cai

Reputation: 20127

There are few reasons causing it, you could refer to the following and troubleshoot it.

  1. Go to your kudu site to check whether all your project file have uploaded to azure.

  2. After publishing webapp to azure, wait for a moment.

  3. Make sure you default page is listed in here and is above hostingstart.html

enter image description here

  1. Deploy Continuous to Azure App Service.

Update:

  1. Delete app and republish it.

Upvotes: 1

Related Questions