MyBB Community Forums

Full Version: Url Redirection
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hello. I am running MyBB version 1.4 and would want to know how to redirect http://www.forums.omgafrica.net to http://forums.omgafrica.net. Thanks
It's the same thing? WWW. can be included or excluded, with no diffrence. It isn't something that you can control (at least I don't think so.)
It's same thing how i can see. Type in browser www.google.com and google.com it's same just like your Forum.
Try creating a .HTACCESS file with this:

RewriteEngine on
RewriteCond %{HTTP_HOST} ^forums.omgafrica.net [NC]
RewriteRule ^(.*)$ http://forums.omgafrica.net/$1 [L,R=301]
(2010-03-29, 06:21 PM)Tierney Wrote: [ -> ]It's the same thing? WWW. can be included or excluded, with no diffrence. It isn't something that you can control (at least I don't think so.)

No buddy, Google thinks not. WWW prefixing an address is different from the same address without the www prefix Toungue
(2010-03-29, 06:29 PM)JovanJ. Wrote: [ -> ]It's same thing how i can see. Type in browser www.google.com and google.com it's same just like your Forum.

Nope. Not the same Toungue
(2010-03-29, 06:55 PM)lan7 Wrote: [ -> ]Try creating a .HTACCESS file with this:

RewriteEngine on
RewriteCond %{HTTP_HOST} ^forums.omgafrica.net [NC]
RewriteRule ^(.*)$ http://forums.omgafrica.net/$1 [L,R=301]

Now that is the answer of the day. Thanks a million Smile