启用 url 重写后 DRUPAL 图像损坏
我在 Drupal 上打开了 URL 重写,并且某些 URL 图像已损坏。
例如:
local/tw/sites/all/themes/tw/images/1-p1.jpg 成为 local/tw/content/sites/all/themes/tw/images/1-p1.jpg
或
local/tw/sites/all/themes/tw/images/2-p1.jpg 成为 local/tw/node/sites/all/themes/tw/images/2-p1.jpg
有什么想法吗?
I turned on URL rewriting on Drupal, and some URL image are broken.
For example :
local/tw/sites/all/themes/tw/images/1-p1.jpg become
local/tw/content/sites/all/themes/tw/images/1-p1.jpg
or
local/tw/sites/all/themes/tw/images/2-p1.jpg become
local/tw/node/sites/all/themes/tw/images/2-p1.jpg
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用相对路径,并且您正在谈论节点内的内容,那么这是完全正常的,因为“node/”被解释为目录。
您可以通过在图像 src 之前添加“/”来解决此问题,或者使用像 路径过滤器 这样提供简单的文件:相对/路径/到/文件语法。
If you used relative path, and you're talking about contents within nodes, it's perfectly normal, since "node/" is interpreted like a directory.
You could fix this problem adding a "/" before image src, or using module like Path Filter that provides a simple file:relative/path/to/file syntax.