MyBB Community Forums

Full Version: 301 redirect problems
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
while i was seeing my site in the websitegrader.com

it was showing the following error

Permanent Redirect Not Found

Search engines may think studentmithra.com and www.studentmithra.com are two different sites.You should set up a permanent redirect (technically called a "301 redirect") between these sites. Once you do that, you will get full search engine credit for your work on these sites.
This isn't MyBB support, it's an issue with how you've setup your redirect. How did you make it??
(2010-03-30, 06:02 PM)MattRogowski Wrote: [ -> ]This isn't MyBB support, it's an issue with how you've setup your redirect. How did you make it??

hi
i dont know how to setup redirect can u give me the steps on setuping the redirect
please
Add one of these to your .htaccess

If you want to use http://www.studentmithra.com
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.studentmithra\.com$
RewriteRule (.*) http://www.studentmithra.com/$1 [R=301,L]

If you want to use http://studentmithra.com (no www)
RewriteEngine On
RewriteCond %{HTTP_HOST} !^studentmithra\.com$
RewriteRule (.*) http://studentmithra.com/$1 [R=301,L]