Home  >  Q&A  >  body text

nginx redirection problem

I want to redirect /template/view/images/ to /images/, how should I write it?

PHP中文网PHP中文网2713 days ago516

reply all(3)I'll reply

  • 滿天的星座

    滿天的星座2017-05-16 17:25:10

    rewrite ^/template/view/images/(.)..$ $1/images/$2 last;

    reply
    0
  • 高洛峰

    高洛峰2017-05-16 17:25:10

    conflocation ^~ /images/ {
      root /template/view/images/;
    }
    

    reply
    0
  • 高洛峰

    高洛峰2017-05-16 17:25:10

    http://www.hubwiz.com/course/54f031e2f8638715e4cb8e0c/

    reply
    0
  • Cancelreply