XF 1.2 Apache Redirects To Nginx Help

Brent W

Well-known member
I moved a forum from vBulletin to xenForo and have the following in .htaccess:

Code:
RewriteRule f[\d]+/.+-([\d]+)/index([\d]+).html showthread.php?t=$1&page=$2 [NC,L]
RewriteRule f[\d]+/.+-([\d]+)/ showthread.php?t=$1 [NC,L]
RewriteRule f([\d]+)/index([\d]+).html forumdisplay.php?f=$1&page=$2 [NC,L]RewriteRule f([\d]+)/ forumdisplay.php?f=$1 [NC,L]

I would like to move this forum to Nginx server but need to know what to replace those rewrites with.
 
Top Bottom