Windows2008 iis7 pseudo-static URL with special symbol space inaccessible solution

  
                  

windows2008 iis7 pseudo-static URL with special symbol space can not be accessed

Under iis7, pseudo-static with spaces in the url will not be able to access normally, for example: http://search.* *.cn/product/k-ˮ+��.htm will appear that the request filtering module is configured to reject requests that contain double escape sequences. HTTP Error 404.11 - Not Found The workaround is as follows:

1. In the address bar, type: %windir%\\system32\\inetsrv\\config\\applicationhost.config and click Open.

2. In the ApplicationHost.config file, locate the <requestFiltering> node under configuration/system.webServer/security/requestFiltering/in the file. About 360 lines change <requestFiltering> to <requestFiltering allowDoubleEscaping="true"> or modify or add the node in the web.config of the website.

<configuration>

<system.webServer>

<security>

<requestFiltering allowDoubleEscaping="true">< ;/requestFiltering>

</security>

</system.webServer>

</configuration>

This problem has been plagued for a long time Finally solved.

Copyright © Windows knowledge All Rights Reserved