環境參數:
- WordPress:v 4.2.5
編輯 config.php
找到網站根目錄下的 config.php,加入以下二行程式碼:
define('WP_HOME','http://newdomain.com');
define('WP_SITEURL','http://newdomain.com');
但這只是官方建議為了不讓你在後台主畫面中,不小心又輸入錯的新網址(也就是禁止更改的意思)
編輯 function.php
最重要的是這個動作,找到佈景主題下的 functions.php,通常位於 wp-content/themes/your-theme/functions.php,在最上方(
update_option( 'siteurl', 'http://newdomain.com' );
update_option( 'home', 'http://newdomain.com' );
接著訪問網站(舊網址)即可完成更新。先記下來備用並分享給各位。
參考來源:
1.https://codex.wordpress.org/Changing_The_Site_URL
EmoticonEmoticon