1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

New Domain?

Discussion in 'Google' started by o_iSniPe_xX, Nov 5, 2016.

  1. #1
    So my old domain was expired, so I ended up switching to a new domain and just transferred the whole site.

    Since the content is the same, do I get penalized for that?
     
    o_iSniPe_xX, Nov 5, 2016 IP
  2. iwebsocial

    iwebsocial Well-Known Member

    Messages:
    1,715
    Likes Received:
    69
    Best Answers:
    4
    Trophy Points:
    170
    #2
    You have to redirect all pages of your old site to new one using 301 redirect and than submit a change of url request in Google webmasters tools. This will prevent you to being penalized by Google as a duplicate content.
     
    iwebsocial, Nov 5, 2016 IP
    wanessmark likes this.
  3. wanessmark

    wanessmark Active Member

    Messages:
    268
    Likes Received:
    12
    Best Answers:
    0
    Trophy Points:
    78
    #3
    Why you switched to a new one? ...It happened to me too but I asked them to renew it even the domain was expired already.
    BTW...I have the same goal, to migrate my website content to a WP...but Im afraid of losing all organic traffic
     
    wanessmark, Nov 17, 2016 IP
  4. ericastone

    ericastone Member

    Messages:
    43
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    26
    Digital Goods:
    1
    #4
    Give this man a like!
     
    ericastone, Nov 22, 2016 IP
  5. Markwilson22

    Markwilson22 Greenhorn

    Messages:
    15
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    11
    #5
    Ya if you're using Wordpress I'd recommend using simple 301 redirects plugin
     
    Markwilson22, Dec 6, 2016 IP
  6. daniel27lt

    daniel27lt Active Member

    Messages:
    109
    Likes Received:
    6
    Best Answers:
    1
    Trophy Points:
    98
    Digital Goods:
    4
    #6
    Since you mentioned you use Wordpress it's best to set this up within your .htaccess file (or any site for that matter). By doing this its permanently redirecting all search engines and other users who might go to the old links.

    Add the following code:

    RewriteEngine on
    RewriteCond %{HTTP_HOST} ^olddomain.com [NC,OR]
    RewriteCond %{HTTP_HOST} ^www.olddomain.com [NC]
    RewriteRule ^(.*)$ http://newdomain.com/$1 [L,R=301,NC]
    Code (markup):
    NOTE: And off course change the domains to your domains.

    And if you are wanting to redirect particular pages, then use the following line within your .htaccess file:

    Redirect 301 /oldfile.htm /newfile.htm
    Code (markup):
    I hope this has helped.
     
    daniel27lt, Jan 8, 2017 IP
  7. info

    info Well-Known Member

    Messages:
    898
    Likes Received:
    12
    Best Answers:
    0
    Trophy Points:
    120
    #7
    just use 301 redirect and renew domain for multiple years
     
    info, Jan 9, 2017 IP
  8. Toka97

    Toka97 Active Member

    Messages:
    71
    Likes Received:
    3
    Best Answers:
    1
    Trophy Points:
    80
    #8
    You may not get penalized for same content however you'll loose all organic keywords, traffic & rank.
    To avoid all of this you can 301 redirect your old domain to new domain and then in Google search console add request for domain change.
    This way I could change my domain without any noticeable rank or organic traffic loss.
    P.S. Since you're using WordPress there are many plugins for 301 redirects but if you use Apache(and in most cases you do) I recommend you .htaccess method, it's faster & way better. Just add this code with your old & new domain to anywhere in .htaccess
    RewriteEngine on
    RewriteCond %{HTTP_HOST} ^olddomain.com [NC,OR]
    RewriteCond %{HTTP_HOST} ^www.olddomain.com [NC]
    RewriteRule ^(.*)$ http://newdomain.com/$1 [L,R=301,NC]
     
    Toka97, Mar 21, 2017 IP