I have my .net mvc4 application with area named "Mobile", in my web.config file 51 degrees configured to redirect mobile devices to this area :
<redirect firstRequestOnly="false" mobileHomePageUrl="~/Mobile" timeout="20" devicesFile="~/App_Data/Devices.dat" mobilePagesRegex="Mobile"></redirect>
How can i configure 51 degrees to do not redirect iPad. Or in another words : ignore IPad as mobile device?
i was try to add "locations":
<locations>
<location name="Mobile" url="~/Mobile">
<add property="IsTablet" matchExpression="false"/>
<add property="IsMobile" matchExpression="true"/>
</location>
</locations>
and this is not help...
I found the solution for my own question. In web.config file :
in mobile Area default controller: