Hi @neeraj verma • Thank you for reaching out.
After successful authentication, Azure AD posts the token at the URL configured as Reply URL (Assertion Consumer Service URL). Once the application receives the token at the specified URL, it automatically redirects to the landing page e.g. index.php. I suspect this is what's happening in your case. To confirm this, you can capture a fiddler trace or network capture using browser tools (by pressing F12 key) and check if there is an auto redirection from myurl to myurl/index.php. If that is the case, there is nothing you can do from the Azure AD side. You will have to engage the application owner/vendor to configure the application so that it doesn't auto-redirect to the index.php page.
-----------------------------------------------------------------------------------------------------------
Please "Accept the answer" if the information helped you. This will help us and others in the community as well.