I'm still quite new to nginx and despite I took a look at all the answers of this kind of questions and tried everything they said, nothing has worked so far.
I want to do this redirection:
From http://www.mydomain.com/folder to http://cdn.mydomain.com/folder
I have put this inside the server conf:
location /folder/ {
rewrite ^ http://cdn.mydomain.com/folder/$request_uri permanent;
}
I think I am near but still don't get where I am wrong.
In my old server, using this .htaccess inside each folder works fine:
RewriteEngine On
RewriteRule (.*) http://cdn.mydomain.com/folder/$1 [L,R=301]
Thanks in advance!