I have web.config's spread throughout my app that sets authorization like this:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.web>
<authorization>
<allow roles="Authors" />
<allow roles="Editors" />
<deny users="*" />
</authorization>
</system.web>
</configuration>
I need to provide access to all *.sitemap
files regardless of the authorization permissions in the web.config's. Is this possible, hopefully just set once from the root web.config?