Hi,
I have created a custom 404 page created inside my website.
This page only contains a custom paragraph and the url is set up as /404:
When i go to this url404 page the return status is 200.
Then i change the website configuration to set the 404 page to this page and the problem still happen
Finally, i change my web.config file:
<httpErrors errorMode="Custom">
<remove statusCode="404" subStatusCode="-1" />
<error statusCode="404" prefixLanguageFilePath="" path="/404" responseMode="ExecuteURL" />
</httpErrors>
And i have the same problem, the /404 page still returning status 200.
Is something wrong?
Regards,
Jose.