How to redirect www.mysite.com/12345 to www.mysite.com/action?id=12345 using struts2 ?
|
|
|
|
|
|
|
I use URL rewriting to get these kind of flexible mappings working (though you could probably do it in struts proper, possibly with your own interceptor or something). There's a great little project, urlrewritefilter that gets the job done. In your URL rewriting configuration you'd have a rule like:
Have a look at the manual to see if it is what you are looking for. |
||
|
|
|
|
UPDATE Ok. Based on the comment below. I have managed something like this in this way in the past. Create a package in struts with a catch all action.
Then in the urlrewrite method of the action class:
So in calling the action you will have to do like this:
If you do not want a new package then you can do this in the default package. |
||||
|
