How to redirect users to /login_locate_sso.do page from instance URLSummarySome customers might want that when they open the URL - http://instance.service-now.com, they are redirected automatically to http://instance.service-now.com/login_locate_sso.do , when they have multiple IDPs. ReleaseApplicable for all instancesInstructionsThis is a custom code, and should be tried in sub-prod instance first. This is related to eliminating the external login page. Create a script include - Example it is named as PreLoginScript as below with a function named 'redirectToLoginLocateSSO' var PreLoginScript = Class.create();PreLoginScript.prototype = {initialize: function() {},redirectToLoginLocateSSO: function() { return "/login_locate_sso.do"; },type: 'PreLoginScript'}; Update the Update the system property - glide.entry.page.script value as below new PreLoginScript().redirectToLoginLocateSSO(); Now, when the instance URL is opened, the user will be redirected to http://instance.service-now.com/login_locate_sso.do Note: In glide.entry.page.script system property, if value has been set for SPEntryPage(), then that will be replaced by the value above. Both cannot be there.