Foros de discusión

Redirect to Liferay site

thumbnail
Manish Yadav, modificado hace 11 años.

Redirect to Liferay site

Expert Mensajes: 493 Fecha de incorporación: 26/05/12 Mensajes recientes
Hi All,

I have one requirement of redirection from java application to lifeary site. Two server are running on single machine .One normal java web application portt number 80 and second is liferay portal server on different port number eg:-9090.

for eg:- java web application url is :- www.xyz.com

if somebody type www.xyz.com/abc then it should go to liferay portal ..


any body have idea how i can achieve this.
thumbnail
Gnaniyar Zubair, modificado hace 11 años.

RE: Redirect to Liferay site

Liferay Master Mensajes: 722 Fecha de incorporación: 19/12/07 Mensajes recientes
Manish,,

you can auto redirect like this: give below code in your home page ( index.html) of normal application

<title>Redirecting to Liferay</title>
<meta http-equiv="refresh" content="1; URL=http://www.google.com/">
<meta name="keywords" content="automatic redirection">



HTH

- Gnaniyar Zubair
thumbnail
Gnaniyar Zubair, modificado hace 11 años.

RE: Redirect to Liferay site

Liferay Master Mensajes: 722 Fecha de incorporación: 19/12/07 Mensajes recientes
you can increase the redirection time by setting seconds value :
content=3 for redirecting in 3 seconds
thumbnail
Manish Yadav, modificado hace 11 años.

RE: Redirect to Liferay site

Expert Mensajes: 493 Fecha de incorporación: 26/05/12 Mensajes recientes
Thanks Zubiar,

But my requirement is slightly different .
if anybody type URL as www.xyz.com then request has to go JAVA WEB APPLICATION .if somebody is typing www.xyz.com/abc then it should to go liferay portal server.
both servers are in running on same machine on different different ports
thumbnail
Gnaniyar Zubair, modificado hace 11 años.

RE: Redirect to Liferay site

Liferay Master Mensajes: 722 Fecha de incorporación: 19/12/07 Mensajes recientes
Yes Manish. you can give the meta tag in both server.

if JAVA Application to LIFERAY,

Add that meta attribute in index.html


if LIFERAY to JAVA,

Add that meta attribute in portal_normal.vm
Oliver Bayer, modificado hace 11 años.

RE: Redirect to Liferay site

Liferay Master Mensajes: 894 Fecha de incorporación: 18/02/09 Mensajes recientes
Hi Manish,

you should be able to achieve this by adding a virtual host file to the apache webserver you're certainly running in front of liferay. Add a file to the sites-enabled folder of apache and use e.g. a rewrite rule.

HTH Oli
thumbnail
Manish Yadav, modificado hace 11 años.

RE: Redirect to Liferay site

Expert Mensajes: 493 Fecha de incorporación: 26/05/12 Mensajes recientes
Thanks Oliver Bayer,
could you please provide a sample of properties file. actually my requirement is www.xyz.com servlet web application running on tomcat . www.xyz.com have one logo on home page, if anybody clicks on that logo than liferay abc community page should open. it means www.xyz..com/abc. both server are running on same machine..
could you please let me know what are the properties files i need to change in web-server to achieve this functionality
thumbnail
Gnaniyar Zubair, modificado hace 11 años.

RE: Redirect to Liferay site

Liferay Master Mensajes: 722 Fecha de incorporación: 19/12/07 Mensajes recientes
Hi Manish,

If you want to redirect by clicking the logo, then give the entire redirection path in href.

< a href="<Liferay URL>" > Logo </a>

Sorry if i am wrong
thumbnail
devaraj s, modificado hace 11 años.

RE: Redirect to Liferay site

Regular Member Mensajes: 228 Fecha de incorporación: 21/05/12 Mensajes recientes
is already liferay running in www.xyz.com/abc ?

If not follow virtual server concept, In my case also same we are running liferay in www.xyz.com and java web application in www.xyz.com/abc.