I am experiencing an issue with accessing a .NET website with SSL on my Blackberry device. When I try to view the site, I receive the message "HTTP ERROR 403 FORBIDDEN - You're not authorized to view this page. Please try loading a different page". The options given are "OK" and "DETAILS", and clicking on "Details" redirects me to the mobile version of the site successfully.
Is there a solution to prevent this problem when accessing the site on a Blackberry browser? I simply want to type in and be directed to the secure mobile version without encountering any errors.
The code in my redirectssl.html file used to redirect to the non-mobile version is as follows:
<HTML>
<TITLE>Redirect to Secure Site</TITLE>
<script language=javascript>
self.location = "https://www.nameofthesite.com"
</script>
<noscript>
<META HTTP-EQUIV=Refresh CONTENT="1; URL=https://www.nameofthesite.com">
</noscript>
<B>This site requires SSL. Redirecting...</B>
<BR>
<BR>
If you are not redirected immediately, please click <A href="https://www.nameofthesite.com">here</A>
</HTML>