Redirecting url from old to new

Any body will help me to redirect my old wordpress post
http://tuffclassified.com/xyz/ to new custom post
http://tuffclassified.com/ads/xyz/ . It was easy in apache as i have to
add just

END WordPress

RewriteRule ^/(.*)$ http://tuffclassified.com/ads/$1 [R=301,L]

Posted at Nginx Forum:

On Wed, May 11, 2011 at 7:23 PM, tuffclassified [email protected]
wrote:

Any body will help me to redirect my old wordpress post
http://tuffclassified.com/xyz/ to new custom post
http://tuffclassified.com/ads/xyz/ . It was easy in apache as i have to
add just

END WordPress

RewriteRule ^/(.*)$ http://tuffclassified.com/ads/$1 [R=301,L]

location /xyz/ {
rewrite ^ /ads/$uri permanent;

}

2011/5/11 tuffclassified [email protected]:

Any body will help me to redirect my old wordpress post
http://tuffclassified.com/xyz/ to new custom post
http://tuffclassified.com/ads/xyz/ . It was easy in apache as i have to
add just

END WordPress

RewriteRule ^/(.*)$ http://tuffclassified.com/ads/$1 [R=301,L]

location / {
rewrite ^ /ads$uri permanent;
}

thanks later one seems to work

Posted at Nginx Forum: