Stack Exchange network consists of 183 Q&A communities including Stack Overflow, the largest, most trusted online community for developers to learn, share their knowledge, and build their careers.
Stack Overflow for Teams is now called Stack Internal. Bring the best of human thought and AI automation together at your work.
Bring the best of human thought and AI automation together at your work. Learn more
Stack Internal
Knowledge at work
Bring the best of human thought and AI automation together at your work.
What should be the correct configuration , if i want to redirect any request for www.mydomain.com to www.mydomain.com/page.
I tried couple of options but always ended up in an redirect loop.
www.mydomain.com/any/url/
www.mydomain.com/page
This should do the trick:
rewrite ^/$ http://www.mydomain.com/page permanent;
If this was what you were using and it looped then there must be a redirect rule in place for /page.
Required, but never shown
By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.
www.mydomain.com/any/url/to be redirected towww.mydomain.com/page?