Domain to Another Domain Redirect

Discussion in 'Search Engine Optimization' started by Tech9logyCreators, Nov 23, 2016.

  1. #1
    Hi All,

    I want to transfer my website from old to new domain.

    I know the process but worried about 301 redirection.

    Kindly tell me the process.
    Do I have to do
    redirect 301 old url new domain url (1 by one)
    Or only redirect domain, so it can redirect all url itself?

    Kindly suggest me.
     
    Tech9logyCreators, Nov 23, 2016 IP
  2. Dowsons

    Dowsons Greenhorn

    Messages:
    36
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    6
    #2
    properly written 301 redirect will redirect all url also.
     
    Dowsons, Nov 23, 2016 IP
  3. Tech9logyCreators

    Tech9logyCreators Member

    Messages:
    25
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    31
    #3
    Thanks @Dowsons It is working,
    but my website other urls are showing as not found.
     
    Tech9logyCreators, Nov 23, 2016 IP
  4. Tech9logyCreators

    Tech9logyCreators Member

    Messages:
    25
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    31
    #4
    I am using this code.
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{HTTP_HOST} ^domain1.in$ [NC,OR]
    RewriteCond %{HTTP_HOST} ^domain1.$ [NC]
    RewriteRule (.*)$ http:/ /domain2./$1 [R=301,NC]
    </IfModule>

    on my website and for home page it works perfectly. But my inner pages are showing as not found.
    can you guys suggest me some?
     
    Tech9logyCreators, Nov 23, 2016 IP
  5. ScissBee

    ScissBee Greenhorn

    Messages:
    30
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    6
    #5
    You should move your inner pages to new domain.
     
    ScissBee, Nov 24, 2016 IP
  6. Accuratist

    Accuratist Greenhorn

    Messages:
    33
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    6
    #6
    It depends on how your linking work in HTML, maybe you have links with full link?
     
    Accuratist, Nov 25, 2016 IP