Hi Raju,
o handle deep link functionality in Mendix 10.6.13 without using the Deeplink module and ensure users are redirected to the correct page instead of the default home page when they are not logged in, you need to modify the Show Default Page microflow in the navigation settings. The key challenge is differentiating between a deep link request and an SSO login. To achieve this, you can check for deep link parameters in the URL using the getRequestHeaders
Java action from the Community Commons module to retrieve the Referrer or Original Request URL. If the user is not logged in, store the deep link request temporarily in a non-persistent entity or session attribute and then redirect them to the login page. After successful authentication, retrieve the stored deep link and navigate the user to the intended page instead of the default home page. In the Show Default Page microflow, introduce a decision to check whether a deep link request exists. If found, extract its parameters and redirect accordingly; otherwise, proceed with the normal login process. If your app uses SSO, verify whether the session contains a deep link reference. If an SSO login is detected without a deep link, the user should be redirected to the standard home page. This approach ensures seamless navigation for deep link users while maintaining standard login functionality.
Hope it helps!