XF 1.5 Redirect to pages doesnt work

Another thing,

I have a sub forum links that I need to rewrite. The equivalent to it to xenforo is the index page with anchor link:
FROM
forumdisplay.php/8-category
TO
/xenforo/#category.8

It doesnt work because it redirects to:
xenforo/forums/category.8

Maybe because its affected by this redirect:
RewriteRule ^forumdisplay.php/([0-9]+)-([^\.]+)/page([0-9]+)$ http://www.domain.com/xenforo/forums/$2\.$1/page-$3/ [L,R=301,NC]

How can I make certain forum categories from vbulletin redirect to the assigned anchorlink?
 
Last edited:
In this case, you should write rules to redirect specific URLs to special locations. You can use the "Redirect" directive here rather than a rewrite.
 
Top Bottom