Here is a little tip for everyone. I use 301 redirects on all my sites. So if you type in domain.com, it will redirect to www.domain.com. I use it because its better for SEO, so they wont get mixed up on the 2 different versions.
Now, to do this, open up your .htaccess page..
Then put this code in it…
RewriteEngine On
RewriteCond %{HTTP_HOST} !^(.*)\.domain\.com$ [NC]
RewriteRule ^(.*)$ http://www.domain.com/$1 [R=301,L]
Change the “domain” to your sites domain
Good luck.
If you enjoyed this blog post than I think you should subscribe to the RSS feed. That way you can learn a lot more from me and laugh some more at my really bad grammar. Again, here is the link for the RSS feed.
Random Posts
Comments are Dofollow! My thanks to you for contributing to the discussion
2 Comments
Sorry, the comment form is closed at this time.








You should also change “.com” to your site’s TLD.
Ahh, thanks for catching that