MyBB Community Forums

Full Version: MyBB canonical urls
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
So after a fresh install, i put this in htaccess like i do with all my sites to avoid duplicate content

i will be using the non- www

<IfModule mod_rewrite.c>
	RewriteEngine ON
	
	RewriteCond %{HTTP_HOST} !^myforums\.net
  RewriteRule (.*) http://myforums.net/$1 [R=301,L]

</IfModule>

So all traffic to www.myforums.net is directed to myforums.net

Is this the right way with MyBB? it is working so far.
That looks right.