nginxurl-rewritinghttp-redirectngx-http-rewrite-module

Redirect vBulletin URLs to XenForo with NGINX rewrite rules


I would like to know how to rewrite the nginx this url:

Old URL: http://www.webcheats.com.br/vbulletin/showthread.php?t=2175433

New URL: http://www.webcheats.com.br/threads/2175433/

thanks


Solution

  • location = /vbulletin/showthread.php {
        return 301 /threads/$arg_t/;
    }