I have set up a Sitecore instance with an external ASP.NET membership database (for info on this see my earlier question) and can successfully create and edit users on the site (not using the Sitecore User Manager). However, the location elements I've set up in the web config (under <configuration> don't seem to be having any effect - I can access all areas irrespective of whether I'm logged in or not. I'm not sure if I'm meant to include an <authorization> element under <system.web> - I've tried this and it still has no effect.
FYI I have under <configuration> in web.config:
<location path="en/administrators">
<system.web>
<authorization>
<allow roles="Administrator"/>
<deny users="?"/>
</authorization>
</system.web>
</location>
UPDATE
Just to summarise some of what was mentioned in the Sitecore security reference manual; it is necessary to deny read access to the 'extranet\Anonymous' user account to the relevant pages. This is done within the Security Editor in sitecore. Note also that it's necessary to perform a publish for these changes to become active (unlike changes to sitecore editor accounts which become active straight away).