B2B
B2B

Reputation: 1

Link file not in the wwwroot directory

is it possible to link files in my webserver outside the "wwwroot" directory using php. for example I have a php page and I want to link a file in the music files.

Upvotes: 0

Views: 111

Answers (1)

Shad
Shad

Reputation: 15461

Can you link to them? No

Can you serve the files? Sure!

header('Content-Type: '.filetype(OUTSIDE_OF_WEB_ROOT_FILE));
readfile(OUTSIDE_OF_WEB_ROOT_FILE);
exit;

Upvotes: 1

Related Questions