Hi @hardikv
The preferred and standard way is to change the liquid scripting in the Home web template.
The example below is redirecting to the "contact-us" page.
{% if user %}
//if any user logs in
<script>
window.location.href='./contact-us/'
</script>
{% else %}
//Home web page code, if you don't want to display the page when the user is being redirected
{% endif %}
//Home web page code, if you want to display the page when the user is being redirected
Hope it helps.
------------
If you like this post, give it a Thumbs up. Where it solved your request, Mark it as a Solution to enable other users to find it.