Using urlrewiter.net i am trying to do a 301 redirect of any requests to the website root to a new destination. e.g
www.example.com should be redirected to www.example.com/en/
How can i achieve this with urlrewriter.net i've tried the following rules but none work or go into an infinite loop.
<redirect url="^www\.example\.com" to="/en/" />
<redirect url="^www\.example\.com\/" to="/en/" />
<redirect url="^www.example.com" to="/en/" />
<redirect url="^www.example.com/" to="/en/" />
<redirect url="/" to="/en/" />
<redirect url="^/" to="/en/" />
Anyone know how to do this?