This is normal since you changed the URL for your forum, so you lose your current SEO if I'm not mistaken.
For example, the forum https://example.com/forum is already well referenced on Google and several external links point to different pages of the forum. It is therefore important not to lose them.
To do this, you must set up a permanent redirection rule in the
Add this at the biggining of the fileURLs https://example.com/forum will be redirected to https://forum.example.com
Visitors will be redirected well and search engines are used to this change... integration is rather easy. The work done on the previous forum is not lost.
For example, the forum https://example.com/forum is already well referenced on Google and several external links point to different pages of the forum. It is therefore important not to lose them.
To do this, you must set up a permanent redirection rule in the
.htaccess
file.Add this at the biggining of the file
Code:
<IfModule mod_rewrite.c>Options +FollowSymLinksRewriteEngine onRewriteRule ^(.*)$ https://forum.exemple.com/$1 [R=301,NC,L]
Visitors will be redirected well and search engines are used to this change... integration is rather easy. The work done on the previous forum is not lost.
Statistics: Posted by ssl — Wed Jul 31, 2024 3:07 pm