On 20 Set 2011 22h38 WEST, nginx-forum at nginx.us wrote:
> Hi,
>
> please help me to rewrite this mod_rewrite rule:
>
> RewriteRule (img/(.+))$ webroot/$1 [L]
Try:
location ^~ /img/ {
location ~* /img/(.+)$ {
return 301 /webroot/$1;
}
}
Or 302 if you want it to be temporary.
--- appa