How to Do a 301 From a .INFO to a .COM?

3 replies
  • WEB DESIGN
  • |
I just registered 5 new .INFO domains with the express purpose of redirecting them to my money site... but I don't know how to go about doing this as I've never done it before. If anyone could give me a quick run down I'd appreciate it thanks!
#301 #info
  • Profile picture of the author rams11d
    you can find the redirect option in your cpanel. You can use 301 redirect to any of your website using this option.
    {{ DiscussionBoard.errors[5642387].message }}
    • Profile picture of the author trentonlaura
      Originally Posted by rams11d View Post

      you can find the redirect option in your cpanel. You can use 301 redirect to any of your website using this option.
      That's simple enough, I'll look into it now thanks!
      {{ DiscussionBoard.errors[5643124].message }}
  • Profile picture of the author namaserajesh
    Or add this code in your .htaccess file at top level.


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


    Don't forget to replace SITENAME.INFO with your .info domain and SITENAME.com with your .com URL.

    Hope this helps.
    {{ DiscussionBoard.errors[5645222].message }}

Trending Topics