jorrebor
jorrebor

Reputation: 2232

How to serve somefile.pdf instead of index.html as default with .htaccess file?

I want visitors on www.domain.com to be served with a pdf file on www.domain.com/file.pdf automatically.

The file shoudl be shown in the browser. Not downloaded. Is this possible to do with .htaccess rules?

My webhoster runs apache.

Upvotes: 2

Views: 1204

Answers (1)

Mohammed Elhag
Mohammed Elhag

Reputation: 4302

Put this code in root directory .Htaccess :

DirectoryIndex  file.pdf

Upvotes: 4

Related Questions