在WP-content&之前删除丢失某些上传的图片没有显示?
例如: 网址: www.example.comwp内容/ uopload / 2017
在本网站中,有些图片不能正常工作
答案 0 :(得分:1)
也许你的OP有点晚了,但是任何遇到类似问题的人都会遇到这个帖子,这可能是因为你的网络服务器中有重定向规则。
我将http重定向到https,我的规则在新网址中缺少尾随斜杠,例如对于Apache:
<VirtualHost *:80>
Redirect permanent / https://www.example.com
...
通过添加尾部斜杠来修复此问题:
<VirtualHost *:80>
Redirect permanent / https://www.example.com/
...
答案 1 :(得分:0)
如果您的网址完全像这样: http:="" localhost="" mywebsite="" wp-content="" uploads="" 2020="" 08="" finance.jpg"
您应该修正href中的引号。
错误= style="background-image:url("<?php echo $imageuri['url'] ?>")"
正确= style="background-image:url('<?php echo $imageuri['url'] ?>')"
用"
完成样式报价