I'm a little confused about what you are asking for sure, but in order to use your web.config to provide authentication on the page for the page, you need something like this:
<location path="Forms/Administration/Default.aspx"> <system.web> <authorization> <allow roles="Administrator, User, AdditionalUser" /> </authorization> </system.web> </location>
If you need to be more detailed, you need to add logic to the middle tier, and then check the page load or URL request (if MVC).
source share