Redirect without creating a new action

Hi, I want to redirect /join to /signup
Signup is defined as:
map.signup ‘/signup’, :controller => ‘users’, :action => ‘new’

If i define join in the same way then the same content is displayed but
it is technically a different page (different URI)
map.join ‘/join’, :controller => ‘users’, :action => ‘new’

I want /join to redirect to /signup. Is this possible without creating
a join action just to contain the redirect?

I could just do the following but it is not RESTful and seems a bit
silly to be creating an exception just to do that. Am i missing
something?
def join
redirect_to signup_path
end