<div dir="ltr"><div>Hi,</div><div><br></div><div>I need to hide /it Query portion for SEO request in a django-cms setup.</div><div><br></div><div>I tryed with::</div><div><br></div><div>    location /it {</div><div>      if ($request_method = 'GET') {</div>
<div>        rewrite ^/it(/?.*) <a href="https://my.domain.it">https://my.domain.it</a>$1 ;</div><div>      }</div><div>    }</div><div>    location / {</div><div>        uwsgi_pass  preprod;</div><div>        include /etc/nginx/proxy.conf;</div>
<div>        include /etc/nginx/uwsgi_params;</div><div>    }</div><div><br></div><div><br></div><div>everything works corectly BUT authentication (that is a POST to</div><div>/it/). My impression is that 'location /it' doesn't handle a POST and it</div>
<div>doesn't fall back to the more general 'location /'. Is it correct?</div><div>What it the std way to achieve a redirect just in case of a GET request?</div><div><br></div><div>Thanks in advance</div><div>sandro</div>
<div><br></div></div>