मुझे http://www.test.com पर प्रत्येक http://test.com अनुरोध को पुनर्निर्देशित करने की आवश्यकता है । यह कैसे किया जा सकता है।
सर्वर ब्लॉक में मैंने जोड़ने की कोशिश की
rewrite ^/(.*) http://www.test.com/$1 permanent;
लेकिन ब्राउज़र में यह कहता है
The page isn't redirecting properly
Firefox has detected that the server is redirecting the request for
this address in a way that will never complete.
मेरा सर्वर ब्लॉक जैसा दिखता है
server {
listen 80;
server_name test.com;
client_max_body_size 10M;
client_body_buffer_size 128k;
root /home/test/test/public;
passenger_enabled on;
rails_env production;
#rewrite ^/(.*) http://www.test.com/$1 permanent;
#rewrite ^(.*)$ $scheme://www.test.com$1;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}