redmine 中文附件下载文件找不到

/redmine/app/views/attachments/_links.html.erb

找到

<p><%= link_to_attachment attachment, :class => 'icon icon-attachment', :download => true -%>

替换为

<p><%= link_to attachment.filename, attachment_path(attachment) , :class => 'icon icon-attachment', :download => true %>

loowj:替换预览中文名称图片访问不到情况

<% if defined?(thumbnails) && thumbnails %>

  <% images = attachments.select(&:thumbnailable?) %>

  <% if images.any? %>

  <div class="thumbnails">

    <% images.each do |attachment| %>

      <div><a href="<%=attachment_path(attachment)%>"><img src="<%=attachment_path(attachment)%>" width="100px" height="100px" /></a></div>

    <% end %>

  </div>

  <% end %>

<% end %>

</div>



重启redmine

你可能感兴趣的:(redmine 中文附件下载文件找不到)