Last updated on
May 15, 2021
Issue
Customers who implement Single Sign On (SSO) may require a way to redirect their users away from the Breeze login page to their authentication portal or application.
Solution
You may edit the login.xsl file, located atroot:\breeze\appserv\apps\system (where root is the drive where Breeze server is installed), and comment out the following lines of code:
<!--function init() { if (top != self) top.location.href=self.location.href;-->
Then, you can insert the following JavaScript method to redirect to your target location, replacing the URLhttp://www.exampleA.com with the URL of the authentication portal or application you want to redirect to.
<script type="text/javascript"> window.location.href=http://www.exampleA.com/;</script>