URLs with a Plus Character Trigger a 404 Error When Using an IIS Reverse Proxy Server
Symptoms
Any URL containing a plus (+) character will not work, and instead triggers a "page not found" (HTTP 404) error.
Cause
By default, the security filter in IIS denies any URL containing a "+" character.
Resolution
Enable double escaping in your IIS
web.config
file, to allow the "+" character to go through correctly. This file should be created in the virtual directory you created during the steps of Connecting Confluence with IIS 7.<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <security> <requestFiltering allowDoubleEscaping="true" /> </security> </system.webServer> </configuration>
Last modified on Feb 26, 2016
Powered by Confluence and Scroll Viewport.