Trusted WordPress tutorials, when you need them most.
Beginner’s Guide to WordPress
WPBカップ
25 Million+
Websites using our plugins
16+
Years of WordPress experience
3000+
WordPress tutorials
by experts

WordPressサイトのURLを変更する方法(ステップバイステップ)

WordPressサイトのURLを変更することは、初心者には怖く聞こえるかもしれませんが、重要なスキルです。多くの読者から、正しいやり方について質問を受けました。

長年にわたり、HTTPからHTTPSへの移行、ドメインネームの変更、サブドメインへの移行、ローカルサーバーからライブサイトへの移行、コンテンツの再構築など、サイトオーナーのURL変更をお手伝いしてきました。

私たちもお手伝いします。この投稿では、WordPressサイトのURLをステップバイステップで簡単に変更する方法をご紹介します。

How to change your WordPress site URLs (step by step)

WordPressサイトのURLを変更する理由

WordPressのURLを変更する必要がある、または変更したい理由はたくさんあります:

WordPressでリダイレクトが多すぎるエラーが表示される場合や、WordPressの他のエラーのトラブルシューティングを行う場合は、WordPressのアドレス設定を変更する必要があるかもしれません。

WordPressアドレスとサイトアドレスの違いは?

WordPressのURLを変更する場合、WordPressのアドレスとサイトのアドレスの2つの区切りの設定を更新する必要があります。

Change the WordPress Address and Site URL to Your New Domain

この2つの設定の違いがわからないため、多くの初心者が混乱する可能性がある:

  • WordPressのアドレス(URL)は、管理ページ、メディアファイル、プラグイン、テーマなど、WordPressのファイルやフォルダーが保存されているアドレスです。
  • WordPressのサイトアドレス(URL)は、あなたのサイトの公開部分です。訪問者があなたのサイトにアクセスするためにウェブブラウザに入力するものです。

大半のユーザーにとって、WordPressのアドレスとサイトアドレスのURLは同じだろう。

しかし、大企業の場合、企業サイトには他にも多くのアプリケーションがあり、WordPressのセキュリティを向上させるために各アプリケーションのホスティングサービスを分離したいため、WordPressサイトを別のサーバーでホスティングする場合があります。

それでは、WordPressサイトのURLを簡単に変更する方法を見ていきましょう。以下のクイックリンクから、お好きな方法にジャンプしてください:

方法1:管理エリアからWordPressサイトのURLを変更する

この方法が最も簡単で初心者にもやさしい。WordPressの管理画面にアクセスできるのであれば、この方法を使うことをお勧めします。

WordPressダッシュボードにログインし、設定 ” 一般に移動します。

ここでは、「WordPressアドレス」と「サイトアドレス」のボックスでWordPressサイトのURLを変更できます。

Change WordPress address and site address

前述の通り、ほとんどのサイトでは、これらは同じURLになる。

その後、「変更を保存」ボタンをクリックしてURLの変更を保存します。

これで、サイトにアクセスして、すべてが問題なく機能していることを確認できる。

方法2:functions.phpファイルを使用してWordPressサイトのURLを変更する

WordPressの管理画面にアクセスできない場合は、この方法を使用する必要があります。

まず、FTPクライアントを使用してWordPressサイトに接続する必要があります。詳しくは、FTPを使ってWordPressにファイルをアップロードする方法をご覧ください。

次に、WordPressテーマのフォルダーを探します。ほとんどのユーザーにとって、これは/wp-content/themes/your-theme-folder/のようなものでしょう。

Locate functions.php file via FTP

このフォルダーで、functions.phpファイルを開き、メモ帳やテキストエディットのようなお好みのテキストエディターを使って編集する必要があります。

次に、ファイルの一番下に以下のコードを追加する必要がある:

update_option( 'siteurl', 'https://example.com' );
update_option( 'home', 'https://example.com' );

https://example.comを自分のサイトのURLに置き換えるのを忘れないでください。これで変更を保存し、FTPを使ってサーバーにファイルをアップロードすることができます。

では、あなたのサイトにアクセスして、すべてが正常に戻ったかどうかを確認してください。

この方法の利点は、データベースのサイトURLを更新することです。WordPressは、functions.phpファイルが読み込まれるたびに、サイトURLのデータベースを更新します。

サイトが正常に動作するようになったら、WordPressテーマのfunctions.phpファイルから2行のコードを削除してください。

方法3:wp-config.phpファイルを使ってWordPressサイトのURLを変更する

編集するWordPressテーマが本当に〜してもよいですか?またはfunctions.phpファイルが見つからない場合は、この方法を使うことができます。

WordPressの設定ファイル(wp-config.php)にサイトのURLを追加する必要があります。このファイルはサイトのルートフォルダにあり、WordPressの重要な設定が含まれています。

このファイルを変更するには、FTPクライアントを使用してサイトに接続する必要があります。詳しくは、FTPを使ってWordPressにファイルをアップロードする方法をご覧ください。

次に、wp-config.phpファイルを探す必要があります。このファイルは通常、ドメインのルートフォルダーにあります。

Locate wp-config.php file via FTP

その後、次のコードを「すべてです!ハッピー公開する。

define( 'WP_HOME', 'https://example.com' );
define( 'WP_SITEURL', 'https://example.com' );

https://example.comを自分のドメイン名に置き換えることをお忘れなく。

これで変更を保存し、サーバーにファイルをアップロードすることができます。その後、サイトにアクセスして、すべてが正常に動作していることを確認してください。

方法4:phpMyAdminを使用してデータベース内のWordPressサイトURLを変更する

WordPressサイトのURLを更新するもう一つの方法は、WordPressデータベースで直接変更することです。WordPressホスティングアカウントのダッシュボードから直接行うことができます。

その前に、WordPressデータベースのバックアップを取ることをお勧めします。これは本当に重要で、何か問題が発生した場合にWordPressデータベースの変更を元に戻すのに役立ちます。

詳しくは、WordPressデータベースのバックアップの取り方をご覧ください。

その後、ウェブホスティングアカウントのダッシュボードにログインし、「データベース」セクションの「phpMyAdmin」アイコンをクリックする必要があります。

Click on phpMyAdmin

注:手順は、ホスティングサービスプロバイダによって若干異なる場合があります。しかし、BluehostのようなすべてのcPanelホスティングサービスプロバイダは、データベース設定を編集する機能を提供します。

これで自動的にphpMyAdminアプリケーションが起動し、ウェブベースのインターフェースでMySQLデータベースを編集できるようになります。さらに詳しく知りたい方は、phpMyAdminを使ったWordPressデータベース管理の初心者ガイドをご覧ください。

まず、左側のカラムでWordPressデータベースをクリックしてください。WordPressデータベース内のテーブルが表示されます。

次に、’wp_options’ カラム設定をクリックします。

Click on database and wp-options

初期設定では、データベース接頭辞は ‘wp_’ ですが、WordPress のデータベース接頭辞は変更できるので、違うものになるかもしれません。

オプション・テーブルの行が表示されます。siteurl’と’home’がリストされている’option_name’カラムを見つける必要があります。

Edit options name

まず、各行の左にある鉛筆の「編集」アイコンをクリックし、「option_value」フィールドを新しいサイトURLに変更します。

オプション表をスクロールして「ホーム」オプション名を見つける必要があるかもしれません。

その後、右下にある「Go」ボタンをクリックするだけで、データベースの変更が保存されます。

Change option name URL

これで、サイトにアクセスして、すべてが正常に機能していることを確認できます。

方法5:AIOSEOプラグインを使ってWordPressサイトのURLを変更する

上記の方法はすべて、既存のWordPressインストールのURLを変更するのに役立ちます。この方法は、現在のWordPressのURLを新しいWordPressインストールのURLに指すようにするため、少し異なります。

これは、WordPressサイトを新しいドメイン名に移行する際に、ランキングを落としたりダウンタイムを発生させたくない場合によくあることです。

そのための最良の方法がAIOSEOプラグインです。これは、300万以上のサイトで使用されている、市場で最高のWordPress SEOプラグインです。

AIOSEO

注: 無料版のプラグインもありますが、AIOSEO Proバージョンは、SEOランキングを失うことなく、サイト全体、投稿、ページなどをリダイレクトする唯一の方法です。

サイト全体のリダイレクトを簡単に作成できるリダイレクトマネージャーがビルトインされています。

この方法でサイトをリダイレクトすると、旧ドメインにリンクしていたサイトからのリンクが維持され、404エラーを防ぎ、訪問者にとってより良いエクスペリエンスが生まれます。

AIOSEO change website URL

これを正しく行うには、既存のサイトの複製を作成し、新しいドメインに移動し、古いサイトを新しいサイトにリダイレクトする必要があります。

さらに詳しくは、WordPressサイト移転時のURL更新方法をご覧ください。

WordPressで個別投稿やページをリダイレクトしたい場合は、WordPressで301リダイレクトを作成する初心者向けガイドをご覧ください。

WordPressのURL変更に関するよくある質問(FAQ

長年にわたり、何十万人ものユーザーのWordPressサイト作成ブログの開設オンラインストアの立ち上げをお手伝いしてきました。

この間、WordPressのURL変更に関する様々なご質問にお答えしてきました。以下は、よくあるご質問です。

WordPressのアドレスとサイトアドレスの欄がグレーアウトしているのはなぜですか?

管理エリアの設定ページでWordPressのアドレス(URL)がグレーアウトしている場合は、wp-config.phpファイルにURLがハードコードされていることを意味します。

WordPress URL greyed out

WordPressのURLを変更するには、上記の4番目の方法に従ってwp-config.phpファイルを編集し、それに応じてURLを変更する必要があります。

誤ってURL設定を変更してしまったWordPressサイトを復旧させるには?

技術に詳しくないユーザーが、WordPressの管理エリアからWordPressのURLやサイトアドレスの設定を誤って変更してしまうことがあります。

この状態から回復するには、上記の指示に従って、functions.php、wp-config.php、またはWordPressデータベースを編集してWordPressのURLを元に戻す必要があります。

すべてのブログ投稿、ページ、その他のコンテンツエリアのURLを一括更新できるWordPressプラグインはありますか?

はい、Go Live Update URLsプラグインを使用することができます。

WordPressのURLを変更した場合、WordPressの投稿、ページ、データベース内のその他のエリアのリンクを一括更新する方法が必要になります。このプラグインは非常に時間の節約になります。

WordPress.comからWordPress.orgへの移行WixからWordPressへの 移行WeeblyからWordPressへの 移行などです。

WordPressのURLに関するエキスパートガイド

この投稿がWordPressサイトのURLを簡単に変更するのにお役に立てば幸いです。WordPressのURLに関連する他の投稿もご覧ください:

If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.

情報開示 私たちのコンテンツは読者支援型です。これは、あなたが私たちのリンクの一部をクリックした場合、私たちはコミッションを得ることができることを意味します。 WPBeginnerの資金源 をご覧ください。3$編集プロセスをご覧ください。

アバター

Editorial Staff at WPBeginner is a team of WordPress experts led by Syed Balkhi with over 16 years of experience in WordPress, Web Hosting, eCommerce, SEO, and Marketing. Started in 2009, WPBeginner is now the largest free WordPress resource site in the industry and is often referred to as the Wikipedia for WordPress.

究極のWordPressツールキット

ツールキットへの無料アクセス - すべてのプロフェッショナルが持つべきWordPress関連製品とリソースのコレクション!

Reader Interactions

53件のコメント返信を残す

  1. Henry

    Hello Wpbeginner, i want to change my site from /mysite.com to /www.mysite.com. just the www differ. i want to ask, the backlinks which i have built using the https:// version will it redirect passes link juice to the www version?
    .

    • WPBeginner Comments

      This can be changed by editing the Site URLs in the dashboard under Settings > General.

      The “link juice” should be fine in this case. That said, for best results we recommend creating 301 redirects.

  2. Jiří Vaněk

    Do I understand correctly that method number 5 will help me migrate the site and redirect all urls to the new domain? So it only overwrites the domain but leaves the rest of the URL the same?

    • WPBeginner Support

      It would redirect your posts and pages as well.

      管理者

  3. nine

    hi, my colleague used the first method and although the page still exists we cannot log into the wordpress admin site. any suggestions where do I need to revert?
    I tried all the other methods in hopes that it would help but to no avail

    • WPBeginner Support

      It would depend on what issue you are having when attempting to log into your site, you should be able to use one of the other methods from the article above to revert the address to the correct URL.

      管理者

  4. Tomasz Lukomski

    Thanks. Save my whole website!

    • WPBeginner Support

      Glad our article was helpful!

      管理者

  5. LittleDrop

    404
    Sorry we couldn’t find that page.
    It looks like nothing was found at this location. Maybe try one of the links below or a search?

    above is the error message.
    please what to do?

    • WPBeginner Support

      If you were changing your site’s URLs to the correct URL and it is showing that 404 error, you would want to reach out to your hosting provider and they can normally assist with setting up redirects to the correct URL.

      管理者

  6. An

    When I change my website URL from http to https: all looks ok.
    however, every time I log out and log in again, the URL is changed back to http
    I tried changing from the wordpress admin panel and directly in the database, but the changes are always undone when I log in again.

    Any idea what might be causing this?

    • WPBeginner Support

      You may want to check with your hosting provider as some have systems in place to prevent changes in your domain unless they are updated. You would also want to clear your cache if you have it enabled as that is another common cause for that issue.

      管理者

  7. Nate Garner

    Do I change the URLs before I change the domain DNS or after? I want as little down time as possible.

    Thanks

  8. Joseph

    Thank you guys. I mistakenly altered both my Wordpress and site URLs and I couldn’t access the site. Whenever I typed localhost/mysite it returned the error 404. But thanks to this article, I’ve found peace now. Much love.

  9. Niuta

    You have big thumbs up!

    • WPBeginner Support

      Glad our guide was helpful :)

      管理者

  10. Dev Shah

    I have already changed my site URL, now I want to change my internal browsing URLs like
    my site: xyz.com

    Now if I go to about us page
    the URL should become : xyz.com/about

    Is this possible by wordpress?

  11. Michael Feinsinger

    Thanks. I used method 4. phpmyadmin. worked great!

    • WPBeginner Support

      Glad to hear our guide helped :)

      管理者

  12. Gary Sim

    Can site url and home and be different?
    My site will not work on https with www. in
    So can I change site url to https:/www.example in config and not home address.?

    • WPBeginner Support

      You would want to reach out to your hosting provider and they can help with solving that problem as well as what is allowed/required on their hosting.

      管理者

  13. Chris W

    Method 3 worked like a charm! Thank you so much

    • WPBeginner Support

      Glad our guide was helpful :)

      管理者

  14. Frans

    I’ve already tried all options .. but nothing works!
    Changing the url is not a problem, but after that nothing works anymore.

    • WPBeginner Support

      You would want to ensure the domain you changed your site to is set up properly. If you reach out to your hosting provider they should be able to assist :)

      管理者

  15. Alina Rekena

    Thanks for the article! But for me the domain still doesn’t work, it shows that it can’t find the server of my domain. I have entered DNS records (nameservers) for the domain. Where to look for the problem?

    • WPBeginner Support

      You would want to reach out to your hosting provider to ensure the domain is connected on their end correctly.

      管理者

  16. Mariam Anderson

    I was messing around with settings and thought I broke my site. Method #2 worked beautifully. Thank you!

    • WPBeginner Support

      Glad our recommendation was able to help :)

      管理者

  17. Aldo

    I am building a WP site on localhost, and will use Duplicator to move it to an online host. What should the WP Address and Site Address be set to before I run Duplicator and migrate the site?

  18. Samantha Surage

    My wordpress url is on my subdomain and I want to change my site url to my domain. I made the change in my admin area however, I am not seeing the effects of this change in the front end. Would I still need to rn the url replace plugin for it to work?

  19. Steve Shorr

    When I go to general >settings

    I don’t see the web address

  20. Rita Smith

    The two update plugins you recommend are not tested and may not work with the newest version of wp.

  21. Sacha

    I tried to create a website with wp today, however I changed the urls and now don’t have access to wp dashboard. Can you help me pls?

    • WPBeginner Support

      You would want to revert the address to the old URL and reach out to your hosting provider

      管理者

      • Sacha

        Thanks for the reply, since i dont have access i need to do it through pho or client file? If so is there a more detailed explanation please? Its my first time and everything is new for me. Thanks so much

        • WPBeginner Support

          It would depend on the access you do have, the above article covers our recommended methods for changing the address.

  22. Bill Mundhausen

    This option (the easy one) “This method is the easiest. If you can already access the WordPress admin area, then we recommend using this method. Simply login to your WordPress website and go to Settings » General page. From here you can change WordPress site URLs under the ‘WordPress Address’ and ‘Site Address’ options. ” It doesn’t exist.

  23. Amit Patil

    Thank you soo much, this post has been a great help.
    Php option worked for me

    • WPBeginner Support

      Glad our guide was helpful :)

      管理者

  24. Darwish

    Thank you so much, you don’t how much i search for a solution for this .. i even contacted my host and they couldn’t know how to do it …. Method 3 solved it .

    you’re really my trusted source for everything wordpress .

    again thank you so much .

    • WPBeginner Support

      Glad our recommendations were able to help :)

      管理者

  25. Omolewa Adetola

    Hello,I am worried that if I change my site address, I’ll lose all the files on the previous URL and be unable to redirect or reach the former site. That would mean a loss of all my blog posts, wouldn’t it? What can I do, please?

  26. Harsh Patel

    Hello
    After I changed the URL Site Address from WordPress Dashboard and then I changed from the cPanel Account after doing this my site is still displaying that This site can’t be reached.

    What can I do?

    • WPBeginner Support

      You would want to reach out to your hosting provider to ensure you set up the domain properly

      管理者

返信を残す

コメントありがとうございます。すべてのコメントは私たちのコメントポリシーに従ってモデレートされ、あなたのメールアドレスが公開されることはありませんのでご留意ください。名前欄にキーワードを使用しないでください。個人的で有意義な会話をしましょう。