wordpress博客更換域名修改方法

字號(hào):


    將域名從舊域名 更改為 新域名
    手動(dòng)更換域名方法一:
    php文件添加代碼法。
    請(qǐng)打開你的wp-config.php,添加以下代碼到其中,意思是設(shè)置新的wordpress博客網(wǎng)址。
    代碼如下:
    define('wp_siteurl', 'http://新域名');
    define('wp_home', 'http://新域名');
    手動(dòng)更換域名方法二:
    數(shù)據(jù)庫修改法。
    代碼如下:
    update wp_posts set post_content = replace( post_content, '舊域名','新域名') ;
    update wp_comments set comment_content = replace(comment_content, '舊域名', '新域名') ;