掲示板

301 redirects in liferay using stand alone tomcat

thumbnail
11年前 に Brian Scott Schupbach によって更新されました。

301 redirects in liferay using stand alone tomcat

Expert 投稿: 329 参加年月日: 08/10/23 最新の投稿
Hello,

We just redesigned our site and migrated into Liferay. We have over 100 redirects of old URLS to new URLs that we would like to implement before it goes live. We are using tomcat on windows that is not behind IIS/Apache. How can we accomplish this?

i was thinking of setting up a custom filter...does anyone have experience with this? Is a filter the correct/easiest way to do this?

Thanks in advance,

Brian
thumbnail
11年前 に Hitoshi Ozawa によって更新されました。

RE: 301 redirects in liferay using stand alone tomcat

Liferay Legend 投稿: 7942 参加年月日: 10/03/24 最新の投稿
If you're on linux and redirecting by ip address, just set iptables. I do this when redirecting ip to virtual machines on a server.
thumbnail
11年前 に Brian Scott Schupbach によって更新されました。

RE: 301 redirects in liferay using stand alone tomcat

Expert 投稿: 329 参加年月日: 08/10/23 最新の投稿
It's actually on a windows server...
11年前 に Linus Sphinx によって更新されました。

RE: 301 redirects in liferay using stand alone tomcat

Junior Member 投稿: 99 参加年月日: 10/08/12 最新の投稿
I would not even dream of exposing that without a good proxy.
thumbnail
11年前 に Brian Scott Schupbach によって更新されました。

RE: 301 redirects in liferay using stand alone tomcat (回答)

Expert 投稿: 329 参加年月日: 08/10/23 最新の投稿
Update:

Use a web server like apache or IIS in front of tomcat if you need to do a lot of URL redirection. It's much easier..
thumbnail
11年前 に lutz Bremen によって更新されました。

RE: 301 redirects in liferay using stand alone tomcat

Expert 投稿: 291 参加年月日: 11/10/20 最新の投稿
brian please give a short instruction how to set up iis with liferay
11年前 に Linus Sphinx によって更新されました。

RE: 301 redirects in liferay using stand alone tomcat

Junior Member 投稿: 99 参加年月日: 10/08/12 最新の投稿
Create a file in /etc/httpd/conf.d named, 'proxy_ajp.conf', with contents below:

# ajp proxy configuration
LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
ProxyPass / ajp://localhost:8009/

Now every request to apache will be routed to tomcat using the the apache jserv protocol.