更改 WordPress 中图像的路径

发布于 2024-08-25 13:34:06 字数 535 浏览 7 评论 0 原文

我最近将一个朋友的博客移至他的新网络主机上,但不幸的是图像无法正常工作。

这是由于旧主机具有以下图像路径:

http://www.example.com/blog/wp-content/uploads/2009/07/imagename.jpg

新主机使用不同的布局,并具有以下文件路径:

http://www.example.com/wp-content/uploads/2009/ 07/imagename.jpg

“博客”已被删除。

有人知道解决此问题的最简单方法吗?

I recently moved a friends blog onto his new web hosts but unfortunately the images are not working.

This is due to the old host having the following path for images:

http://www.example.com/blog/wp-content/uploads/2009/07/imagename.jpg

The new host uses a different layout and has this path for the file:

http://www.example.com/wp-content/uploads/2009/07/imagename.jpg

'Blog' has been removed.

Does anyone know the easiest way to fix this issue?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

千笙结 2024-09-01 13:34:06

在您的数据库上使用此查询:

UPDATE wp_posts SET guid = replace(guid, 'http://www.old-domain.com/blog','http://www.new-domain.com');

Use this query on your database:

UPDATE wp_posts SET guid = replace(guid, 'http://www.old-domain.com/blog','http://www.new-domain.com');
爱她像谁 2024-09-01 13:34:06

我发现这个关于导出和导入 Wordpress 的教程非常有帮助在这种情况下。

I've found this tutorial on Exporting and Importing Wordpress very helpful in such situations.

柳絮泡泡 2024-09-01 13:34:06

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.

流年已逝 2024-09-01 13:34:06

搜索替换和搜索正则表达式都是一个很好的插件。特别是当您要替换的数据遍布整个站点时。 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/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文