How to Move WordPress Blog to New Domain or Location Wie sich zu bewegen Wordpress Blog auf neue Domain oder Standort

For blogger who self-hosts the WordPress blog publishing system on a web hosting server with own registered domain name, sometimes, you may decide to reorganize the blog link URL to make it tidier or to reflect new focus or theme of the blog. Für Blogger, selbst Gastgeber der WordPress-Blog-Publishing-System auf einem Web-Hosting-Server mit eigenen registrierten Domain-Namen, manchmal, Sie können entscheiden, ob die Reorganisation Blog Link-URL zu machen, ordentlicher oder im Lichte neuer Fokus oder Thema des Blogs. If you decide to change the URL or link location of your WordPress blog due to changing of domain name (such as from http://www.old-domain.com/ to http://www.new-domain.com/) or the blog to another directory location (such as from http://www.domain.com/ to http://www.domain.com/blog/), there are some steps that should be done to ensure the proper migration and no breaking links. Wenn Sie sich entscheiden, ändern Sie die URL-Link oder Ort Ihrer WordPress-Blog aufgrund von Veränderungen des Domainnamens (z. B. von http://www.old-domain.com/ zu http://www.new-domain.com/) oder das Blog in ein anderes Verzeichnis (wie von http://www.domain.com/ zu http://www.domain.com/blog/) gibt es ein paar Schritte, die getan werden sollte, um die reibungslose Migration und keine bahnbrechenden Links.

The tricky part when moving WordPress blog to another location is that WordPress is using absolute path in URL link instead of relative path in URL link location when stores some parameters in database. Der schwierige Teil beim Bewegen WordPress-Blog zu einem anderen Standort ist, dass WordPress ist mit absoluten Pfad in URL-Link anstelle der relativen Pfad in URL-Link speichert Ort Wenn einige Parameter in der Datenbank. Within blog posts’ contents itself, users may also use the old URLs when creating reference backlinks. Innerhalb von Blog-Posts "Inhalt selbst, können Nutzer auch die alten URLs beim Erstellen von Referenz Backlinks. All these values in the database will need to be changed when WordPress is moved. All diese Werte in der Datenbank geändert werden müssen, wenn WordPress ist umgezogen. The following guide will show you which database fields that has references or values related to blog’s URLs that you want to modify. Die folgende Anleitung zeigt Ihnen, welche Datenbankfelder, die Referenzen oder Werte im Zusammenhang mit Blog-URLs, die Sie ändern wollen. Note that this guide is not about how to move WordPress blog from one server or host to another new hosting service. Beachten Sie, dass dieser Leitfaden geht es nicht darum, wie bewegen WordPress-Blog von einem Server oder Host auf einen anderen neuen Hosting-Service.

Once the blog has been moved (all files copy over in case of moving location or server or new domain name properly propagated across Internet for new domain name), the first thing to change is to tell WordPress the new blog location (wp-config.php should be no changes, and .htaccess file should be also no changes. If for some reason mod_rewrite rules for friendly URLs no longer works, you can always regenerate the .htaccess file via WP Administration’s Update Permalinks page). Sobald das Blog ist umgezogen (alle Dateien kopieren über den Fall von sich bewegenden oder Server-Standort oder neue Domain-Namen korrekt propagiert über Internet für neue Domain-Namen), das erste, was zu ändern ist zu sagen, WordPress die neue Blog-Standort (wp-config. php sollten keine Änderungen, und. htaccess-Datei sollte auch keine Änderungen. Wenn aus irgendeinem Grund mod_rewrite Regeln für die freundliche URLs nicht mehr funktioniert, können Sie immer die regenerieren. htaccess-Datei per WP Verwaltung Update Permalinks Seite). This value can be changed via WordPress Options page, but if you no longer able to access to old blog URL, you have to modify the value via MySQL database. Dieser Wert kann über WordPress-Optionen-Seite, aber wenn Sie nicht mehr in der Lage, Zugang zu alten Blog-URL, müssen Sie ändern den Wert über MySQL-Datenbank.

Note: The guide uses SQL statements based on Hinweis: Der Leitfaden verwendet SQL-Anweisungen auf der Grundlage MySQL replace() function MySQL ersetzen ()-Funktion to modify the database. zur Änderung der Datenbank. To run SQL queries, login to MySQL database that houses WordPress tables via phpMyAdmin or login to the DB server and run MySQL client as root. Zum Ausführen von SQL-Abfragen, loggen Sie sich MySQL-Datenbank, die Häuser WordPress Tabellen über phpMyAdmin oder Login auf der DB-Server und starten Sie MySQL-Client als root.

To update WordPress options with the new blog location, use the following SQL command: So aktualisieren WordPress Optionen mit dem neuen Blog Lage, verwenden Sie den folgenden SQL-Befehl:

UPDATE wp_options SET option_value = replace(option_value, 'http://www.old-domain.com', 'http://www.new-domain.com') WHERE option_name = 'home' OR option_name = 'siteurl'; UPDATE wp_options SET option_value = ersetzen (option_value, 'http://www.old-domain.com', 'http://www.new-domain.com') WHERE option_name = 'home' ODER option_name = 'siteurl';

After that you will need to fix URLs of the WordPress posts and pages, which translated from post slug, and stored in database wp_posts table as guid field. Danach werden Sie reparieren müssen URLs der WordPress-Stellen und Seiten, die übersetzt aus dem Dienst Metallklumpen, und in der Datenbank gespeichert wp_posts Tabelle als guid Bereich. The URL values in this field are stored as absolute URLs instead of relative URLs, so it needs to be changed with the following SQL query: Die URL-Werte in diesem Bereich werden als absolute URLs statt der relativen URLs, so muss es änderte sich mit dem folgenden SQL-Abfrage:

UPDATE wp_posts SET guid = replace(guid, 'http://www.old-domain.com','http://www.new-domain.com'); UPDATE wp_posts SET GUID = ersetzen (GUID, 'http://www.old-domain.com', 'http://www.new-domain.com');

If you have linked internally within blog posts or pages with absolute URLs, these links will point to wrong locations after you move the blog location. Wenn Sie im Zusammenhang innerhalb Blog-Posts oder Seiten mit absoluten URLs, diese Verbindungen werden Punkt zu falschen Orten, nachdem Sie das Blog. Use the following SQL commands to fix all internal links to own blog in all WordPress posts and pages: Verwenden Sie die folgende SQL-Befehle zu beheben alle internen Links zu eigenen Blog WordPress in allen Stellen und Seiten:

UPDATE wp_posts SET post_content = replace(post_content, 'http://www.old-domain.com', 'http://www.new-domain.com'); UPDATE wp_posts SET post_content = ersetzen (post_content, 'http://www.old-domain.com', 'http://www.new-domain.com');

Browse through WordPress blog to check if everything is okay. Blättern Sie durch WordPress-Blog zu überprüfen, ob alles in Ordnung ist. You also need to re-login to WP Administration as authentication cookie has now became invalid due to different domain. Sie brauchen auch erneut einloggen zu WP-Administration als Authentifizierungscookie hat nun ungültig wegen unterschiedlicher Domain.

IMPORTANT : This is a machine translated page which is provided "as is" without warranty. WICHTIG: Es handelt sich um eine Maschine der Seite übersetzt wird "as is" ohne Garantie. Machine translation may be difficult to understand. Maschinelle Übersetzung ist vielleicht schwierig zu verstehen. Please refer to Bitte wenden Sie sich an original English article Original Englisch Artikel whenever possible. wann immer dies möglich ist.

Share and contribute or get technical support and help at Aktie und einen Beitrag oder erhalten technische Unterstützung und Hilfe an My Digital Life Forums Meine digitalen Lebens Foren . Werden.



43 Responses to “How to Move WordPress Blog to New Domain or Location” 43 Responses to "Wie sich zu bewegen WordPress Blog zu Neue Domain oder Location"

Pages: [2] Seiten: [2] 1 » Show All Alle anzeigen

  1. Smuggle Me » Export One Wordpress Blog Category to Create a New Blog Schmuggeln Me »Exportieren einer Kategorie Wordpress Blog erstellen ein neues Blog
    August 17th, 2008 10:38 17. Aug 2008 10:38
    43

    [...] Once you have uploaded the posts to the new blog, you’ll also want to consider running the following 2 queries as suggested here: [...] [...] Wenn Sie hochgeladen haben die Beiträge an die neuen Blog, Sie wollen auch prüfen, laufen die folgenden 2 Abfragen wie hier: [...]

  2. Piotr
    August 10th, 2008 05:26 10. Aug 2008 05:26
    42

    great info große Info :)

  3. How to move WordPress blog from old domain to new domain with 301 permanent redirection - SEO / SEM blog Wie bewegen WordPress-Blog von alten auf neue Domain-Domain mit 301 ständige Umleitung - SEO / SEM-Blog
    August 6th, 2008 18:00 6. August, 2008 18:00
    41

    [...] SQL codes from mydigitallife.info SHARETHIS.addEntry({ title: “How to move WordPress blog from old domain to new domain with 301 [...] [...] SQL-Codes aus mydigitallife.info SHARETHIS.addEntry ((Titel: "Wie bewegen WordPress-Blog von alten auf neue Domain-Domain mit 301 [...]

  4. Ken Hung Ken Hung
    August 3rd, 2008 21:45 3. August 2008 21:45
    40

    YOU TOTALLY SAVE MY LIFE!!!!!!!! Sie sparen völlig meinem Leben !!!!!!!! THANK YOU SO SO SO VERY MUCH! Thank you so so so very much! Yea!

  5. NAthanT
    July 30th, 2008 15:56 30. Jul 2008 15:56
    39

    Gold information. Gold-Informationen.

    You saved me hours. Sie hat mich gerettet Stunden.

    Cheers Prost

  6. We’ve Moved… Everything Must Go! Wir sind umgezogen… Alles muß weg! : Foo Kabloo! : Foo Kabloo!
    July 22nd, 2008 11:08 22. Jul 2008 11:08
    38

    [...] http://www.mydigitallife.info/2007/10/01/how-to-move-wordpress-blog-to-new-domain-or-location/ [...]

  7. Designer-WG » Blog Archive » Designer-WG »Blog Archiv»
    July 14th, 2008 20:18 14. Jul 2008 20:18
    37

    [...] I’ve posted this comment to the mydigitallife.info [...] [...] Ich habe gepostet Diesen Kommentar zu der mydigitallife.info [...]

  8. Simon
    July 14th, 2008 20:04 14. Juli 2008 20:04
    36

    Hi folks, Hi Leute,

    I had the same probs, butt I never knew on what it depend’s. Ich hatte die gleichen Probs, Butt ich nie wusste, auf was es abhängen.

    I changed the sites Url in the admin area of my Wordpress-blog, but that was an fault. Ich habe die Seiten URL in den Admin-Bereich meiner Wordpress-Blog, aber das war ein Fehler.
    So nothing would be shown on the right place. Also nichts wäre auf dem richtigen Platz.
    Therefor I needed to change it back, but there is no way to get in the admin area again logically, after I’ve changed the root Url. Dazu brauchte ich, um dies rückgängig machen, aber es gibt keinen Weg, um in den Admin-Bereich wieder logisch, nachdem ich habe das root-URL.

    So I opened my mind to get a solution. Also habe ich öffnete meine Augen, um eine Lösung zu finden. And just in this Moment it comes over me: Und just in diesem Moment kommt es über mich:

    …only go on your hosting surface and start PHPmyADMIN and find the following database entry: … Nur auf Ihrem Hosting-Oberfläche und starten Sie phpMyAdmin und finden Sie die folgenden Datenbank-Eintrag:

    “Your WP-Blog database”–>wp_options–>make this database Entry editable–>now find the row “site_url”–>and change in the “options_value”column the root of your blog–>safe it and it’s done! "Ihr Blog WP-Datenbank" -> wp_options-> machen diese Datenbank editierbar Entry-> jetzt suchen Sie die Zeile "site_url" -> und ändern Sie in der "options_value" Spalte der Wurzel von Ihrem Blog-> Safe und das wars !

    greetings, Simon Grüße, Simon

  9. rebel Rebell
    July 9th, 2008 13:38 9. Juli, 2008 13:38
    35

    yes there are open Ja es gibt offene
    http://www.demonoid.com/

  10. Nikhil George Nikhil George
    July 1st, 2008 14:18 1. Juli, 2008 14:18
    34

    Thanks for that. Vielen Dank dafür. When I googled for this topic another blog said , to this you have to backup the entire database, create new db and upload again. Wenn ich googeln zu diesem Thema ein anderes Blog sagte, zu diesem müssen Sie den gesamten Backup-Datenbank, neue db-und Upload-Vorgang erneut. I was really tensed, but this was actually completed in seconds…..:) Ich war wirklich tensed, aber das war eigentlich fertig in Sekunden… ..:)

  11. ——Sahil Seth dot com—— » Back again… -- Sahil Seth dot com - »Wieder da…
    June 26th, 2008 22:20 26. Juni 2008 22:20
    33

    [...] the first thing to be done was to get hold of all the old posts (though very less in number). [...] Das erste, was zu tun war zu erreichen ist alle alten Posts (wenn auch in sehr geringer Zahl). Here google served as a saviour and I got hold of a plugin called ‘wp-migrate‘, which let me export all the posts along [...] Hier google diente als Retter und ich halten ein Plugin namens "wp-Migration", das möchte ich den Export alle Stellen entlang [...]

  12. Phil
    June 19th, 2008 03:48 19. Juni 2008 03:48
    32

    Thanks a lot for this tutorial! Vielen Dank für dieses Tutorial! I’ve been wanting to do this for months but never dared because I was afraid of losing all my hard work. Ich habe wollen, dies zu tun für die Monate, aber nie gewagt, denn ich hatte Angst zu verlieren, alle meine harte Arbeit. You really saved my day. Du wirklich mein Tag gerettet.

  13. Rhett Soveran Rhett Soveran
    June 16th, 2008 08:30 16. Juni 2008 08:30
    31

    Thanks so much for this post. Dank so viel für diesen Post. It was tremendous help. Er war enorm helfen. That was so easy to follow and worked perfect. Das war so einfach zu folgen und arbeitete perfekt.

  14. scriptygoddess » Blog Archive » Moving a Wordpress Install scriptygoddess »Blog Archiv» Umzug ein Wordpress-Installation
    June 15th, 2008 05:29 15. Juni 2008 05:29
    30

    [...] all their sites to the new site. [...] Alle ihre Websites zu den neuen Standort. Some of these sites were wordpress powered. Einige dieser Gebiete wurden wordpress powered. Thankfully, I found this article that made the move a [...] Zum Glück fand ich diesen Artikel, die den Umzug ein [...]

  15. Worcester NO2ID Worcester NO2ID
    June 14th, 2008 02:09 14. Juni 2008 02:09
    29

    Thanks for this! Thanks for this!

    Everything working. Alles funktioniert. Thanks for providing this valuable resource. Vielen Dank für die Bereitstellung dieser wertvollen Ressource. Was invaluable for helping move our prototype Wordpress installation from my home server to full on hosting! War von unschätzbarem Wert für unsere Bewegung helfen Prototyp Wordpress-Installation von meinem Server zu Hause in vollen Hosting!

  16. Stuart
    June 10th, 2008 00:26 10. Juni 2008 00:26
    28

    I had no problem running the first query - the site found the home page instead of displaying a 404 error. Ich hatte kein Problem mit der ersten Abfrage - die Website gefunden die Homepage anstatt zeigt eine 404-Fehler.
    But whilst the second query executes (I am told 2 rows are affected) and when I click a link in the new domain site the correct url is shown in the address bar, all I get is a 404 Not found message saying the requested URL is not on the server - what does this suggest, have I lost some files? Aber während die zweite Abfrage führt (Mir wurde gesagt, 2 Zeilen betroffen sind) und wenn ich auf einen Link in die neue Domäne Website die richtige URL ist in der Adresszeile, alles, was ich bekommen ist ein 404 Nicht gefunden Meldung besagt, dass die angeforderte URL ist nicht auf dem Server - was tut dies vermuten lassen, habe ich einige Dateien verloren?

  17. Chad McCanna Tschad McCanna
    June 9th, 2008 03:03 9. Juni 2008 03:03
    27

    I just executed this command through PHPMyAdmin after dealing with 2 days of phantom redirects… turns out all that was wrong is I forgot to change the URL. Ich habe gerade diesen Befehl ausgeführt durch PHPMyAdmin nach dem Umgang mit 2 Tagen Phantom redirects… stellt sich heraus, das war alles falsch ist Ich habe eine Änderung der URL. This solved ALL my problems. Dies löste alle meine Probleme. You have no idea what a godsend this blog was to me. Sie haben keine Ahnung, was für ein Geschenk des Himmels diesem Blog war für mich. THANK YOU! THANK YOU!

  18. radyo dinle Radyo dinle
    June 2nd, 2008 15:34 2. Juni 2008 15:34
    26

    hi @ all i need plug in for hosting for wp who can help me hi @ All I Need Plug In für Hosting für WP, kann mir helfen

Pages: [2] Seiten: [2] 1 » Show All Alle anzeigen

Leave a Reply Leave a Reply

You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> Sie können diese Tags: <a href= title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime = ""> <em> <i> <q Cite=""> <strike> <strong>

Subscribe without commenting Abonnieren ohne zu kommentieren


Custom Search

New Articles Neue Artikel

Incoming Search Terms for the Article Eingehender Suchbegriffe für den Artikel

move wordpress bewegen wordpress - -- wordpress migrate WordPress migrieren - -- moving wordpress Bewegen WordPress - -- moving wordpress blog Bewegen Wordpress Blog - -- migrate wordpress migrieren WordPress - -- move wordpress blog Wordpress Blog verschieben - -- moving a wordpress blog beweglichen wordpress ein Blog - -- migrating wordpress Migration WordPress - -- wordpress move domain WordPress Domain-Umzug - -- moving wordpress to a new domain Bewegen wordpress auf einer neuen Domain - -- moving wordpress to a new server Bewegen wordpress auf einen neuen Server - -- how to move a wordpress blog So verschieben Sie eine Wordpress Blog - -- move wordpress domain WordPress Domain-Umzug - -- move wordpress to new domain WordPress Umzug auf neue Domain - -- how to move wordpress blog zum Verschieben von Wordpress Blog - -- how to move wordpress zum Verschieben von WordPress - -- moving wordpress to new domain WordPress bewegen zu neuen Domain - -- move wordpress to another domain WordPress Umzug in eine andere Domäne - -- migrate wordpress blog migrieren Wordpress Blog - -- how to migrate wordpress wie zu migrieren WordPress - -- move wordpress to new server WordPress bewegen zu neuen Server - -- move wordpress installation WordPress Installation verschieben - -- move wordpress database WordPress Datenbank verschieben - -- moving wordpress database Bewegen WordPress-Datenbank - -- wordpress move server WordPress bewegen Server - -- moving wordpress to another domain Bewegen WordPress zu einer anderen Domäne - -- wordpress change domain WordPress ändern Domain - -- move wordpress install Umzug WordPress installieren - -- wordpress move blog WordPress bewegen Blog - -- moving a wordpress site Verschieben einer Website WordPress - -- moving wordpress domain Verschieben wordpress Domain - -- moving wordpress blog to new domain beweglichen WordPress Blog zu neuen Domain - -- CHANGE domain WORDPRESS CHANGE-Domain Wordpress - -- move wordpress blog to new server Umzug Wordpress Blog auf neuen Server - -- wordpress move site WordPress bewegen Website - -- move wordpress new domain Umzug WordPress neue Domain - -- wordpress migrating WordPress Migrieren - -- move wordpress to a new domain wordpress Umzug in eine neue Domain - -- moving wordpress domains WordPress Domänen bewegen - -- move wordpress new server WordPress bewegen neuen Server - -- change wordpress domain WordPress Domain ändern - -- moving wordpress to new server WordPress bewegen zu neuen Server - -- move wordpress blog to new domain Umzug Wordpress Blog auf neue Domain - -- move wordpress site WordPress bewegen Website - -- moving wordpress site WordPress bewegte Website - -- wordpress domain WordPress-Domain - -- move wordpress server WordPress-Server verschieben - -- wordpress migrate blog WordPress migrieren Blog - -- how to migrate wordpress blog wie zu migrieren Wordpress Blog - -- move wordpress Verschieben wordpress - --