Jump to content
Changes to the Jaspersoft community edition download ×

I want to use custom redirection for login page in jaserserver 7.2 community edition


vlimkar

Recommended Posts

Below is the code available in 6.4 version for page redirection at /jasperreports-server-cp-6.4.0/apache-tomcat/webapps/ROOT/index.jsp

<head>

<title>Page Redirection</title>

</head>

<body>

<center>

<h1>Page Redirection</h1>

</center>

<%

   String site = new String("/jasperserver");

   response.setStatus(response.SC_MOVED_TEMPORARILY);

   response.setHeader("Location", site);

%>

</body>

</html>

Is this kind of redirection available in 7.2 version? if yes I would like to know the steps.

Thanks

Link to comment
Share on other sites

  • Replies 0
  • Created
  • Last Reply

Top Posters In This Topic

Popular Days

Top Posters In This Topic

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×
×
  • Create New...