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?
Asked
Active
Viewed 157 times
1 Answers
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
-
Thanks for the response but when I add the
it produces a 500.19 error that the config file is malformed. – Kas Barlow Jun 08 '21 at 08:19 -
Can you show me the details of the 500.19 error? – samwu Jun 09 '21 at 09:24