How to redirect my old wordpress website to my new site?

Started by QuarkJacks, 05-20-2016, 03:48:02

Previous topic - Next topic

QuarkJacksTopic starter

Hello Guys!

So basically i am asking for advice on how to Redirect my old word press site ( http://smilsuterapija.wordpress.com/ ) to my new site ( www.smilsu-terapija.lv ) Maybe some one have experience and could share with me.

Thanks!
  •  


Smart Ranking

There is a WordPress plugin called "redirection" :

https://wordpress.org/plugins/redirection/

It works also for single pages, full website, etc.


RH-Calvin

301 redirect is the best that you can have. It is the most efficient and Search Engine Friendly method for webpage redirection. It's not that hard to implement and it should preserve your search engine rankings for that particular page. If you have to change file names or move pages around, it's the safest option. The code "301" is interpreted as "moved permanently".

MaryGreen

Hello, I will suggest you to watch more detail information at https://en.support.wordpress.com/site-redirect/! Thanks for this professional artical you will solve your issues!

Kate Evans

Just use 301 redirect, which will redirect all the old pages on the old domain to the same pages on the new domain. Create a.Htaceess file in the root of oldsite.com with the following code
    Options +FollowSymLinks
    RewriteEngine on
    RewriteRule (.*) http://networking.4businessglobal.com/$1 [R=301,L]


TomClarke

Hello! I hope that this article http://userguide.expand2web.com/301-redirecting-your-old-website-pages-to-your-new-wordpress-website/ will help you to cope with your problem!

NFSC

You change the directory of your WordPress installation.
You have moved your website to a New domain, and you want the old URLs from a previous website to point to new URL.
You change the Permalinks (URL structure) of your posts and want to redirect people visiting old pages to right pages.
You want to maintain a preferred (canonical) destination for your homepage. (Redirecting www version to non-www version of your homepage).
In all above cases, we want the 301 response status code as we have changed the URL forever.
  •