0

I need help on how to make routing in my flask app hosted using IIS windows server 2012 possible. The home [starting page] works though also cannot load images but it works. The error I get is 404 whenever I click on links leading to other pages in the application. Is there anyone who can assist and tell me what I am doing wrong?

Error i get isenter image description here

Kas Barlow
  • 101
  • 2
  • 7

1 Answers1

0

You can try to add the following to the web.config file:

<system.webServer>
  <modules runAllManagedModulesForAllRequests="true" >
    <remove name="UrlRoutingModule"/>    
  </modules>
</system.webServer>
samwu
  • 3,857
  • 3
  • 11
  • 25