MyBB Community Forums

Full Version: Google SEO 1.6.8 [EOL]
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
i remove it
owo its incredible
I want to switch a forum from address example.com/forum to example.com. Whether there is a script or a solution to GoogleSEO redirect?
htaccess codes, maybe.
But i don't how to do it Big Grin
Just installed 1.6.1 after a long time without upgrading
easy upgrade/installation as always

"Patches" is awesome too, thanks Master Frosts
This plugin generates the keywords and description too?
Only Descriptions, not keywords.
(2011-10-07, 04:43 AM)nadlerz Wrote: [ -> ]Only Descriptions, not keywords.


Thanks for the reply Wink
I want to transfer MyBB forum from subfolder forum to the root. Whether this code is done properly redirection with GoogleSEO urls?

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^forum/(.*)$ /$1 [R=301,NC,L]
</IfModule>
redirect non www to www htaccess, Right code to use?


1.
 rewritecond %{http_host} ^nadlerzforum.com [nc]
    rewriterule ^(.*)$ http://www.nadlerzforum.com/$1 [r=301,nc]

2.
 RewriteCond %{HTTP_HOST} !^www\.nadlerzforum\.com$
    RewriteRule (.*) http://www.nadlerzforum.com/$1 [R=301,L]

3.
RewriteCond %{HTTP_HOST} !^www\.
    RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]

4.
RewriteCond %{HTTP_HOST} ^nadlerzforum.com [NC]
    RewriteRule ^(.*)$ http://www.nadlerzforum.com/$1 [L,R=301]


All of this 4 codes, works in my server.
I'm not good in apache thing, my question is.,,.
What is the best and right code to use?
Thanks!



This is the only code that Google SEO plugin recognize.
1.
 rewritecond %{http_host} ^nadlerzforum.com [nc]
    rewriterule ^(.*)$ http://www.nadlerzforum.com/$1 [r=301,nc]

When I use the 3 other codes, Google SEO notify me to edit htaccess.