My web.config looks like this:
<configuration>
<system.webServer>
<httpErrors>
<remove statusCode="404" subStatusCode="-1" />
<error statusCode="404" prefixLanguageFilePath="" path="/error-404.cfm" responseMode="ExecuteURL" />
</httpErrors>
</system.webServer>
</configuration>
If I navigate to page that doesn't exist, it correctly loads up the 404 page, but chrome's network log shows a 200 response. How can I make sure there's a 404 response? Or does it matter?