SAML SSO redirect error , Any sugestion please ??

0
Hi guys, I did setup application with SAML Authentication and it is working fine  by appending URL with /sso/ https://app_URL/SSO/  --- using this it is taking me to Authentication page But I want to redirect all users to authentication page with having /sso/  in URL line https://APP_URL  , but it is not working for me below is my configuration please let me what I am missing . thank you in advance Index.html <html>     <head>         <meta charset="utf-8">         <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">         <title>Mendix 2</title>         <meta http-equiv="refresh" content="0;URL=/SSO/" />         <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1">         <meta name="apple-mobile-web-app-capable" content="yes">   Index-sso.html <!doctype html> <html>     <head>         <meta charset="utf-8">         <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">         <title>Mendix</title>         <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1">         <meta name="apple-mobile-web-app-capable" content="yes">    Below is a list of these constant values: • SAML20.BindingURI_Redirect : false • SAML20.DefaultLoginPage : /index.html • SAML20.DefaultLogoutPage : /SSO/ • SAML20.SSOLandingPage : /index-sso.html  
asked
1 answers
0

Did you try

<meta http-equiv="refresh" content="0;URL=https://APP_URL/SSO/" />

Regards,

Ronald

 

answered