maleficmax No, just a redirect from www to https://yourdomain.top/forum.
In your .htaccess file, after RewriteEngine on, add something like this:
RewriteCond %{HTTPS} off [OR]
RewriteCond %{HTTP_HOST} ^www\. [NC]
RewriteRule ^ https://yourdomain.top%{REQUEST_URI} [L,NE,R=301]
There are some more explanation on what it does here: https://simonecarletti.com/blog/2016/08/redirect-domain-http-https-www-apache/