ฉันจำเป็นต้องเปลี่ยนเส้นทางทุกhttp://test.comการร้องขอไปยังhttp://www.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;
}
}