Ok, if you have decided which one to use, let's do www redirect. If you are using www, when users enter your phpBB board without www they will be redirected to the URL with www, if you are using without www, when users enter your phpBB forum with www they will be redirected to the one without www.
Open the .htaccess file in the root where your phpBB is installed.
Code: Select all
<IfModule mod_rewrite.c>
RewriteEngine on
If Your Website Does Not Start With WWW
Code: Select all
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ https://%1/$1 [R=301,L]
Code: Select all
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]