Subversion Repositories oidplus

Compare Revisions

Regard whitespace Rev 946 → Rev 947

/trunk/TODO
9,7 → 9,7
 
RDAP:
- Extend handle404() to handle more things required by the RFC, as well as more object types
- "HTTP 404" rewrite: Also implement for NGINX and IIS, see .htaccess
- "HTTP 404" rewrite: Also implement for NGINX, like done in web.config (IIS) and .htaccess (Apache2)
- More TODO see GitHub repository https://github.com/frdl/oidplus-frdlweb-rdap/issues
 
GS1 plugin:
/trunk/web.config
18,6 → 18,19
<anonymousAuthentication userName="" />
</authentication>
</security>
 
<rewrite>
<rules>
<rule name="oidplus_404_handler" enabled="true">
<match url=".+" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="index.php?h404={HTTP_URL}" />
</rule>
</rules>
</rewrite>
</system.webServer>
 
<location path="userdata">