Permanent redirect with nginx

server {
    server_name domain.com;
    rewrite ^(.*)$ http://www.domain.com$1 permanent;
}
 
  • Thanks buddy.. your post has helped me a lot.