掲示板

Redirect to Liferay site

thumbnail
11年前 に Manish Yadav によって更新されました。

Redirect to Liferay site

Expert 投稿: 493 参加年月日: 12/05/26 最新の投稿
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
11年前 に Gnaniyar Zubair によって更新されました。

RE: Redirect to Liferay site

Liferay Master 投稿: 722 参加年月日: 07/12/19 最新の投稿
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
11年前 に Gnaniyar Zubair によって更新されました。

RE: Redirect to Liferay site

Liferay Master 投稿: 722 参加年月日: 07/12/19 最新の投稿
you can increase the redirection time by setting seconds value :
content=3 for redirecting in 3 seconds
thumbnail
11年前 に Manish Yadav によって更新されました。

RE: Redirect to Liferay site

Expert 投稿: 493 参加年月日: 12/05/26 最新の投稿
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
11年前 に Gnaniyar Zubair によって更新されました。

RE: Redirect to Liferay site

Liferay Master 投稿: 722 参加年月日: 07/12/19 最新の投稿
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
11年前 に Oliver Bayer によって更新されました。

RE: Redirect to Liferay site

Liferay Master 投稿: 894 参加年月日: 09/02/18 最新の投稿
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
11年前 に Manish Yadav によって更新されました。

RE: Redirect to Liferay site

Expert 投稿: 493 参加年月日: 12/05/26 最新の投稿
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
11年前 に Gnaniyar Zubair によって更新されました。

RE: Redirect to Liferay site

Liferay Master 投稿: 722 参加年月日: 07/12/19 最新の投稿
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
11年前 に devaraj s によって更新されました。

RE: Redirect to Liferay site

Regular Member 投稿: 228 参加年月日: 12/05/21 最新の投稿
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.