在phpmyadmin中进入博客数据库,选择wp_posts这个表(如果前缀更改了请替换成相应的前缀),运行以下SQL语句:
UPDATE wp_posts SET post_content = REPLACE(post_content ,'原域名(目录)地址','新域名(目录)地址');
例如原目录地址:dimihui.com/i/,新目录地址为:dimihui.com/
应为:UPDATE wp_posts SET post_content = REPLACE(post_content ,'dimihui.com/i/','dimihui.com/');
即可!