내 커뮤니티 업적 표시줄을 확대합니다.

Submissions are now open for the 2026 Adobe Experience Maker Awards.

Mark Solution

활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.

해결됨

File opens instead of downloading in internet explorer in a href link

Avatar

Level 4

Hi guys,

I have this behavior on the internet explorer where if I click on download button the image will be opened in a new tab instead of prompting the download window.

Does anyone have an idea on how to change this behavior?

On others browser this seems to work just fine.

I'm using the Asset Class to get the asset download link;

path = asset.getPath();

1 채택된 해결책 개

Avatar

정확한 답변 작성자:
Community Advisor

Can you try to add download attribute in anchor tag and check what is the behaviour

HTML a download Attribute

Arun Patidar

AEM LinksLinkedIn

원본 게시물의 솔루션 보기

5 답변 개

Avatar

정확한 답변 작성자:
Community Advisor

Can you try to add download attribute in anchor tag and check what is the behaviour

HTML a download Attribute

Arun Patidar

AEM LinksLinkedIn

Avatar

Level 4

This doesn't seems to be applied in this case since the download attribute isn't supported by Internet Explorer 11.

Avatar

Community Advisor

Hi,

This is not code issue , this is IE behaviour though you can force image to download by adding content header as download.

Extra header can be added for images on server side as part of HTTP redirect rules.

Arun Patidar

AEM LinksLinkedIn

Avatar

Level 4

I feel like I'm lost here, I can't find anywhere an example for this.

Do you think you can help me with a little snippet?
Ty

Avatar

Community Advisor

Hi,

Please check for RewriteRule Flags - Apache HTTP Server Version 2.4  Redirect rules

T type is used to set mime type

T|type

Sets the MIME type with which the resulting response will be sent. This has the same effect as the AddType directive.

You can combine the use of Content-Disposition with other content-types, such as image/png or even text/html to indicate you want saving rather than display. It used to be the case that some browsers would ignore it in the case of text/html

Moreover you can set above only for IE browser

Redirect Website Requests Based on the Browser Used (Chrome, Firefox or IE)

Arun Patidar

AEM LinksLinkedIn