I need to redirect users from http://myurl.com/Login.action to http://myurl.com/app/Login.action
I tried this but I get an error saying I get too many redirects.
RedirectMatch ([A-Za-z]*)\.action$ http://myurl.com/app/$1.action
How can I get apache to redirect to the same URL but only redirect once.
Would something like this work?
RedirectMatch ![app\/]([A-Za-z]*)\.action$ http://myurl.com/app/$1.action