How to redirect after Login

Hi Team
I have Create Dashboard.html file
which consist Dashboards.
ans stored in following path /APP/Dashboard/Dashboard.html
Now When user Login
After Login he must be redirect to this page.
How I can achive this.
I have tried this
<jsp:forward page=“http:///Dashboard.html”/>;
but it is not working

On the below path there is a file called welcome.jsp

C:\Program Files\Helical Insight\hi\apache-tomcat-7\webapps\hi-ee\WEB-INF\jsp\login

<div>
     <auth:authorize access="hasRole('ROLE_ADMIN')">
        <c:if test="${param.file ne null and param.dir ne null}">
            <jsp:forward page="/hi.html"/>
        </c:if>

        <c:if test="${param.file eq null}">
            <jsp:forward page="/admin/home.html"/>
        </c:if>
    </auth:authorize>

    <auth:authorize access="isAuthenticated()">
        <jsp:forward page="/hi.html"/>
    </auth:authorize>
</div>

Here you can see forward page wherein you will have to put the forward HTML URL along with path.

You can also refer to sample code below

Sample code below :

<div>
<auth:authorize access="hasRole('ROLE_ADMIN')">
<c:if test="${param.file ne null and param.dir ne null}">
<jsp:forward page="/hi.html"/>
</c:if>

<c:if test="${param.file eq null}">
<jsp:forward page="/hi.html?dir=Landing/Landing Page&file=LandingPage.efw"/>
</c:if>
</auth:authorize>

<auth:authorize access="isAuthenticated()">
<!--jsp:forward page="/hi.html"/-->
<jsp:forward page="/hi.html?dir=Landing/Recruiting Dashboard&file=RecrutingReport.efw"/>
</auth:authorize>
</div>

So how should i write this
following is my file path.
/u01/ezlytix/hi/apache-tomcat-7/webapps/app/WEB-INF/pages/Dashboards/Dashboard.html;

Hi,

In the code of
<jsp:forward page="/hi.html?dir=Landing/Landing Page&file=LandingPage.efw"/>

in your case it will rather become

<jsp:forward page="/u01/ezlytix/hi/apache-tomcat-7/webapps/app/WEB-INF/pages/Dashboards/Dashboard.html"/>

Hi

I tried but its not working.
Its not redirecting to Dashboard.html

any update of redirecting custom html page

Currently my welcome.js having this code.
I want to redirect Dashboard.html.

<auth:authorize access=“isAuthenticated()”>
<jsp:forward page="/hi.html?dir=1559286576738/1559286597592/1559291140586&file=346d9392-321e-4c51-9d25-d8b208b5adf1.efw"/>
</auth:authorize>

Please follow the below steps.

a. Create an EFW file and save it in any folder of “hi-repository”. You can use notepad++ to create the EFW file, the file should have extension .efw

The content of the file could be something like below

<?xml version="1.0" encoding="UTF-8" ?>
<efw>
    <title>Sample EFW Dashboard</title>
    <author>Helical</author>
    <description>This is a sample on how to create a dashboard</description>
    <icon>images/image.ico</icon>
    <template>dashboard.html</template>
    <visible>true</visible> 
    <style>clean</style>
    <security>
        <createdBy>1</createdBy>
        <organization></organization>
    </security>
</efw>

b. As you can see in the EFW file htere is a tag called wherein the HTML file has been called
<template>dashboard.html</template>

Note: Please make sure that the EFW file and the dashboard.html file are present in the same folder in “hi-repository”

c. Open helical insight application frontend (web browser), click on “File Browser” and navigate to the EFW file which you have created. Right click on it and open in new window in order to get the unique URL.

d. Now this URL can be put in the JSP tag
<jsp:forward page="/hi.html?dir=Landing/Landing Page&file=LandingPage.efw"/>