vote up 2 vote down star
1

I would like to redirect/rewrite this two kinds of URLs:

  • mydomain.com -> newdomain.com
  • mydomain.com/specificPage -> newdomain.com/newSpecificPage
  • mydomain.com/anyOtherPage -> mydomain.com/anyOtherPage (no redirect here)

So I just want to redirect the root domain to a new domain, and some pages from my domain to some pages on a new domain...

How can I do that on a JBoss server ?

flag

5 Answers

vote up 2 vote down

Have you looked into http://www.jboss.org/file-access/default/members/jbossweb/freezone/modules/rewrite/index.html? It looks like what you're looking for, and it's pretty similar to Mod_rewrite for Apache.

link|flag
vote up 1 vote down

You might take a look at this http://code.google.com/p/urlrewritefilter/

link|flag
vote up 0 vote down

Sounds like you want to send an HTTP 301 Moved Permanently response.

RewriteCond %{REQUEST_URI} ^URI_TO_REDIRECT
RewriteRule redirect=301 NEW_SITE [L]

or similar. The [L] is to tell it to redirect immediately instead of continuing to rewrite.

link|flag
vote up 0 vote down

hi Hank,

how have you configured the same above in jboss. can you gibe me your sample rewrite.properties. I am just starting with urlrewrite, will appreciate your help.

The url i want to change is http://www.easysquarefeet.com/esfweb/app/homeAction/event/showHome/ to rewrite to http://www.easysquarefeet.com/esfweb/app/homeAction?event=showHome

Abhishek Manocha Houses on rent in Bangalore

link|flag
vote up 0 vote down

If you are routing through apache at all it is possible to use mod_rewrite; you just need to be careful as to where you declare the rewrite rules. Directory configs and .htaccess files won't work; you need it as a global configuration for the entire host. Similar thread on serverfault.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.