Flask app IIS: Keep getting 404 when routing to other pages

186 Views Asked by At

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

1

There are 1 best solutions below

2
On

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

<system.webServer>
  <modules runAllManagedModulesForAllRequests="true" >
    <remove name="UrlRoutingModule"/>    
  </modules>
</system.webServer>