Hello
The best way to achieve this is with a sql statement.
run this on phpmyadmin to leave your forum at yourforum.com/
Code:
UPDATE routenew SET prefix = REPLACE(prefix, 'forum/', '');
UPDATE routenew SET regex = REPLACE(regex, 'forum/', '');
the url will remain as yourforum.com/sub-forum/asdasdasd
if you want your forum to be otherwise.
For example: yourforum.com/foro2/sub-forum
then it will be like this:
Code:
UPDATE routenew SET prefix = REPLACE(prefix, 'forum/', 'foro2');
UPDATE routenew SET regex = REPLACE(regex, 'forum/', 'foro2');
please remember to create backup of your database before doing this.
You can see a demo on my site.
https://hastlegames.com