使用临时地址在生产箱上开发了一个站点(http://IP-adddress).
现在是时候上线了。很久以前,我曾经成功地使用phpMyAdmin并进行了搜索/替换,但我想知道这是否仍然是“最好的”方法。
这些还能用吗?该网站位于WordPress 3.0.1中。
update wp_options set option_value=replace(option_value,\'OLD URL\',\'NEW URL\') where option_value like "%OLD URL%";
update wp_posts SET guid=replace(guid, \'OLD URL\',\'NEW URL\');
update wp_posts SET post_excerpt=replace(post_excerpt, \'OLD URL\',\'NEW URL\');
update wp_posts SET post_content=replace(post_content, \'OLD URL\',\'NEW URL\');
update wp_postmeta SET meta_value=replace(meta_value, \'OLD URL\',\'NEW URL\');
我在这里读了很多相关的帖子,但没有一篇是关于实际问题的。
我以为search and replace plugin 听起来很有希望,但我找到的唯一文档是德语,我看不懂,所以我太谨慎了,不敢尝试。
这条线是关于moving from development to production 里面有很多信息,但是:
大部分都是我的问题,没有列出任何疑问TYIA,
迈克