How can I redirect my home root to an external url? I have a backend website and I want to redirect index to another website (and on another domain).
I'm using Rails 4:
root to: redirect('http:XXXX')
works?
How can I redirect my home root to an external url? I have a backend website and I want to redirect index to another website (and on another domain).
I'm using Rails 4:
root to: redirect('http:XXXX')
works?
The following line will redirect to an external URL.
root to: redirect("http://www.stackoverflow.com/")