How do I make sure when implementing SSL that a fuseaction such as
http://www.mysite.com/index.asp? fuseaction=People.ShowSensitiveStuff gets detected and sent to a message indicating secure connections only but that https://www.mysite.com/index.asp? fuseaction=People.ShowSensitiveStuff works
because it has the 's' at the end of the 'http'?

Put the secure section of the site within a "secure" circuit. Then in the fbx_settings.a4d of that circuit do this:

if (request info{"*secure"} # "1")
redirect("https://%s%s"; % (request info{"*host"}; full requested url))
end if

Regards,

   Aparajita
   www.aparajitaworld.com

   "If you dare to fail, you are bound to succeed."
   - Sri Chinmoy   |   www.srichinmoylibrary.com


_______________________________________________
Active4D-dev mailing list
[email protected]
http://mailman.aparajitaworld.com/mailman/listinfo/active4d-dev
Archives: http://mailman.aparajitaworld.com/archive/active4d-dev/

Reply via email to