404 Error when you have + (plus) character in your URLs

If you receive a 404 error when you have a + (plus) character in your URLs (usually through URL rewriting) then please add the following security tags to your applications web.config file within the system.webServer tags:

<system.webServer>
 <security>
    <requestFiltering allowDoubleEscaping="true" />
 </security>
</system.webServer>

  • 7 Users Found This Useful
Was this answer helpful?

Related Articles

Sessions timeout too quickly - Session state issues.

If your sessions are expiring too quickly then please set the site to use ASP.Net State Server....

Error - It is an error to use a section registered as allowDefinition='MachineToApplication' beyond application level.

If you receive this error when trying to run an application in a sub folder of your website then...

compilation debug="true"

Under no circumstances should any clients use the following option in their web.config files on...

Error - Validation of viewstate MAC failed.

If you get the following error in your ASP.NET application please follow the instructions below:...

Error - There is a duplicate 'system.web.extensions/scripting/scriptResourceHandler' section defined

If you receive the error below when you try and edit a websites settings in the control panel...