コミュニティアチーブメントバーを展開する。

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

Mark Solution

この会話は、活動がないためロックされています。新しい投稿を作成してください。

解決済み

PDF from dispatchers should open in browser without direct download

Avatar

Community Advisor

Hi Team,

The requirement is we suppose not to download the PDF from dispatchers, it should open in the browser.

What are the configurations for this in dispatchers? Please advise.

Thanks

Uma

1 受け入れられたソリューション

Avatar

正解者
Community Advisor

Dear Uma,

 

If you could try to add following command to your .conf file, it would resolve issue:

<LocationMatch "\.(?i:pdf)$">
  ForceType application/pdf
  Header set Content-Disposition inline

</LocationMatch>

 

Regards,

Peter

 

 

Another Reply:

Finally we are able to open in tab for specific folder PDF's of specific site dispatcher file <Directory "/usr/local/pmc/var/www/html/content/dam/site/specificfolde/"> <FilesMatch "\.(pdf)$"> Header set Content-Disposition "inline" Header set Cache-Control "max-age=86400, public" Require all granted </FilesMatch> </Directory>

元の投稿で解決策を見る

7 返信

Avatar

正解者
Community Advisor

Dear Uma,

 

If you could try to add following command to your .conf file, it would resolve issue:

<LocationMatch "\.(?i:pdf)$">
  ForceType application/pdf
  Header set Content-Disposition inline

</LocationMatch>

 

Regards,

Peter

 

 

Another Reply:

Finally we are able to open in tab for specific folder PDF's of specific site dispatcher file <Directory "/usr/local/pmc/var/www/html/content/dam/site/specificfolde/"> <FilesMatch "\.(pdf)$"> Header set Content-Disposition "inline" Header set Cache-Control "max-age=86400, public" Require all granted </FilesMatch> </Directory>

Avatar

Community Advisor

Hi Peter,

Thanks , we will try to update these.

Thanks

Uma

Avatar

Level 10

Excellent response Peter!

Avatar

Level 2

You might as well add these as well while you are there. I put all mine in a new /conf.d/rewrites/mod_locationmatch.rules file --

<LocationMatch "\.(?i:xml)$">
ForceType text/xml
Header set Content-Disposition inline
</LocationMatch>
<LocationMatch "\.(?:gif|jpe?g|png)$">
ForceType image
Header set Content-Disposition inline
</LocationMatch>

 

Avatar

Level 2

HI Peter,

As per the suggestion from you,  below regular expression will open all pdf files in new tab irrespective of dam path, this fine.

<LocationMatch "\.(?i:pdf)$">
ForceType application/pdf
Header set Content-Disposition inline

</LocationMatch>

 

But, if want to down load specific dam path pdf file then what is the regular expression.

example: open all pdf's in new tab for this site specific dam path if we have more sites content in dam.

ex: /dam/abcproject/allbooks/(1-100 pdf files)

<LocationMatch "\.(?i:pdf)$">

 

Kindly do the needful, Thank you.

 

Avatar

Level 2
HI Peter & Donald, Finally we are able to open in tab for specific folder PDF's of specific site dispatcher file <Directory "/usr/local/pmc/var/www/html/content/dam/site/specificfolde/"> <FilesMatch "\.(pdf)$"> Header set Content-Disposition "inline" Header set Cache-Control "max-age=86400, public" Require all granted </FilesMatch> </Directory>

Avatar

Level 2

Finally we are able to make specific folder pdf's open in tab itself , below is the site configuration in dispather level.

 

<Directory "/usr/local/pmc/var/www/html/content/dam/site/specificfolder/">
<FilesMatch "\.(pdf)$">
Header set Content-Disposition "inline"
Header set Cache-Control "max-age=86400, public"
Require all granted
</FilesMatch>
</Directory>