如果不会sql语句的话,就直接在mysql管理页面修改
sql语法
UPDATE 表名 SET 字段 = REPLACE (字段,'替换内容', ' 替换值');
替换一个字段的一些内容. 表smc_options里有siteurl和home的值, update smc_options set option_value = replace (option_value, ' localhost ' , ' 你的域名 ' );
更正文章中内部链接及附件的地址: 文件内部如果有相关的连接和附件的地址,更正如下 UPDATE smc_posts SET post_content = REPLACE (post_content, ' 替换内容 ' , ' 替换值 ' );
更改文件的永久链接 UPDATE smc_posts SET guid = REPLACE (guid, ' 替换内容 ' , ' 替换值 ' );
更正博客用户里你的网站链接:(如果你的个人资料里没有填你的博客地址,可忽略) UPDATE smc_users SET user_url = REPLACE (user_url,’替换内容’, ' 替换值’);
更正评论者资料里你的博客链接: UPDATE wp_users SET user_url = REPLACE (user_url,’替换内容’, ' 替换值’);
更正评论内容你的博客链接:(如果评论里没有你博客链接,可忽略) UPDATE wp_users SET comment_content = REPLACE (comment_content,’替换内容’, ' 替换值’);