Rewrite all urls inside location block in nginx

Edho Arief edho at myconan.net
Mon Dec 24 10:02:44 UTC 2012


On Mon, Dec 24, 2012 at 5:01 PM, howard chen <howachen at gmail.com> wrote:
>
> Hello,
>
> I have a config like
> location = /foo.xml {     if ($scheme = https) {         rewrite .*
> http://$http_host/foo.xml permanent;     } }
>
> But as you can see, the file is already matched with the location block,
> it seems to me the regex rewrite is wasting the CPU cycle, are there any
> better way to do it?
>

return 301 http://$http_host/foo.xml;



More information about the nginx mailing list