Reputation: 1380
I have created a MVC5 Web Application and tried to deploy on IIS7 on a separate machine having windows 2007 . everything is set ok but when I am Browsing it its giving
404.8 The request filtering module is configured to deny a path in the URL that contains a hiddenSegment section
please Suggest something .
I have tried it by publish also
Upvotes: 2
Views: 1793
Reputation: 3866
I had the same issue.Just do the following steps resolved my issue.
Upvotes: 0
Reputation: 1380
It is Solved by installing .Net 4.5 framework separately I have missed it previously . for my Other Friends who are facing same problem . you should have these .
Upvotes: 0
Reputation: 32818
By default IIS will reject requests where the path contains "bin", "app_code", "app_data", and a few other reserved names. See http://www.iis.net/learn/manage/configuring-security/use-request-filtering (section "Filter Out Hidden Segments") for more information.
Upvotes: 3