atom feed1 message in ru.sysoev.nginxNginx 301 redirection problem
FromSent OnAttachments
Bousmanne CédricMay 6, 2009 1:14 am 
Subject:Nginx 301 redirection problem
From:Bousmanne Cédric (aky@gmail.com)
Date:May 6, 2009 1:14:07 am
List:ru.sysoev.nginx

Hi all,

I'm new on this list and (nearly) newbie with Nginx, so, please, be patient with my poor brain ;-)

Here's the problem i got : on my blog, i've got some reference on old directories . I tried a rewrite rule to redirect these old links to the correct directory.

Some possible case :

(url)/wordpress => (url) (url)/wordpress/public/path/to/image/image.jpg => (url)/public/path/ to/image/image.jpg and so one.

My Nginx conf file :

server { # ... location /wordpress { rewrite ^/wordpress//?(.*(\..*)?)$ http://www.parenthese.be/$1 break; } }

At this time, i can redirect /wordpress to my domain, /wordpress/ something to /something, but i can't redirect when i try to get a file. IE : /wordpress/something/image.jpg won't redirect my request at all.

Can anyone help me?

Thanks per advance.