Varma
Member
Hey guys need a urgent help with this.
Today i moved by Xenforo installation from root directory to subfolder /forums. (have now a WordPress on the root directory)
So now i need to permanently redirect all old request (threads|forums|members) to the new /forums destination in the correct threads. Like /forums/threads/xxxx-124/
I tried one code from here
But it seems to be not working.
Can anyone urgently help me on this? On the the way, i'm on a Nginx server.
Today i moved by Xenforo installation from root directory to subfolder /forums. (have now a WordPress on the root directory)
So now i need to permanently redirect all old request (threads|forums|members) to the new /forums destination in the correct threads. Like /forums/threads/xxxx-124/
I tried one code from here
Code:
location ~* ^(threads|forums|members)/.*$ {
rewrite (threads|forums|members)/(.*)$
/community/$1/$2 permanent;
}
But it seems to be not working.
Can anyone urgently help me on this? On the the way, i'm on a Nginx server.