Forums de discussion

301 redirects in liferay using stand alone tomcat

thumbnail
Brian Scott Schupbach, modifié il y a 11 années.

301 redirects in liferay using stand alone tomcat

Expert Publications: 329 Date d'inscription: 23/10/08 Publications récentes
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
Hitoshi Ozawa, modifié il y a 11 années.

RE: 301 redirects in liferay using stand alone tomcat

Liferay Legend Publications: 7942 Date d'inscription: 24/03/10 Publications récentes
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
Brian Scott Schupbach, modifié il y a 11 années.

RE: 301 redirects in liferay using stand alone tomcat

Expert Publications: 329 Date d'inscription: 23/10/08 Publications récentes
It's actually on a windows server...
Linus Sphinx, modifié il y a 11 années.

RE: 301 redirects in liferay using stand alone tomcat

Junior Member Publications: 99 Date d'inscription: 12/08/10 Publications récentes
I would not even dream of exposing that without a good proxy.
thumbnail
Brian Scott Schupbach, modifié il y a 11 années.

RE: 301 redirects in liferay using stand alone tomcat (Réponse)

Expert Publications: 329 Date d'inscription: 23/10/08 Publications récentes
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
lutz Bremen, modifié il y a 11 années.

RE: 301 redirects in liferay using stand alone tomcat

Expert Publications: 291 Date d'inscription: 20/10/11 Publications récentes
brian please give a short instruction how to set up iis with liferay
Linus Sphinx, modifié il y a 11 années.

RE: 301 redirects in liferay using stand alone tomcat

Junior Member Publications: 99 Date d'inscription: 12/08/10 Publications récentes
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.