I will change the url of my site, i'm using nginx now.
I will use this configuration to redirect all of the content
[CODE]server {
listen 80;
server_name www.example.com;
rewrite ^/(.*) http://example.com/$1 permanent;
}[/CODE]
But, how to make exception? i don't want to move some pages on my old site.