Hey everyone!
I ran into an issue I can't resolve.
We switched from VB to Xenforo and it all seemed fine. Just recently I've noticed some huge amount of 404 errors piling up in Search Console.
Whenever the showthread.php is called, it quits with a 404 error. Example: https://www.pcmasters.de/forum/showthread.php?t=89299
If I redirect it to the new structure with the id manually, it seem work.
The server is running ngnix and I set a redirection but it doesn't work:
My guess is that it has some other cause.
I hope someone could help me out on this one
Greetings and all the best XMAS wishes to everyone!
I ran into an issue I can't resolve.
We switched from VB to Xenforo and it all seemed fine. Just recently I've noticed some huge amount of 404 errors piling up in Search Console.
Whenever the showthread.php is called, it quits with a 404 error. Example: https://www.pcmasters.de/forum/showthread.php?t=89299
If I redirect it to the new structure with the id manually, it seem work.
The server is running ngnix and I set a redirection but it doesn't work:
Code:
location ~ ^/forum/showthread.php?t=(.*) {
rewrite ^ /forum/posts/$1 redirect;
}
My guess is that it has some other cause.
I hope someone could help me out on this one
Greetings and all the best XMAS wishes to everyone!