I have ASP.NET MVC website which is hosted in a child directory of other website which is protected with form login like below:
<domain>/parent --asp.net 2.0, with login form (standard form auth)
<domain>/parent/mysite --asp.net mvc 4.0
server: IIS 6
to enter the mysite
website user should pass the login form of parent
website. it is OK until we develop twilio application on mysite
and need a public access of twiml on <domain>/parent/mysite/twilio/twiml
. the /twilio
is an area, /twiml
is a controller.
i have tried the following configuration on the /mysite
web.config but it doesn't work.
<location path="~/parent/mysite/twilio">
<system.web>
<authorization>
<allow users="*"/>
</authorization>
</system.web>
</location>
Edit
i don't have control/access to change the code/configuration on parent website.
any idea how to get this working?