Redirecting domains with nginx is pretty simple:
server { listen 80; server\_name example.com; rewrite \^/(.\*) http://parkedsite.example.com/$1 permanent; }
Redirecting domains with nginx is pretty simple:
server { listen 80; server\_name example.com; rewrite \^/(.\*) http://parkedsite.example.com/$1 permanent; }