更改 WordPress 中图像的路径
我最近将一个朋友的博客移至他的新网络主机上,但不幸的是图像无法正常工作。
这是由于旧主机具有以下图像路径:
http://www.example.com/blog/wp-content/uploads/2009/07/imagename.jpg
新主机使用不同的布局,并具有以下文件路径:
http://www.example.com/wp-content/uploads/2009/ 07/imagename.jpg
“博客”已被删除。
有人知道解决此问题的最简单方法吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
在您的数据库上使用此查询:
Use this query on your database:
我发现这个关于导出和导入 Wordpress 的教程非常有帮助在这种情况下。
I've found this tutorial on Exporting and Importing Wordpress very helpful in such situations.
Search RegEx 是一个很好的插件,能够通过 Grep 搜索和替换所有内容帖子和页面。还要在模板文件中查找
<>php bloginfo(); 形式的硬编码链接。 ?>
表示路径中不需要的 /blog/。Search RegEx is a good plugin to be able to search and replace with Grep through all posts and pages. Also look in template files for hardcoded links in the form of
<>php bloginfo(); ?>
for the unneeded /blog/ in the path.搜索替换和搜索正则表达式都是一个很好的插件。特别是当您要替换的数据遍布整个站点时。 http://wordpress.org/extend/plugins/search-and-replace/< /a>
Search replace is a good plugin as well as Search RegEx. Especially if your data to replace is widespread throughout your site. http://wordpress.org/extend/plugins/search-and-replace/