Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Serve files to the browser that are not available directly

License

Notifications You must be signed in to change notification settings

gisostallenberg/file-serving

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

file-serving

Serve files to the browser that are not available directly

Installation

composer require gisostallenberg/file-serving

Usage example

Add in serve-it/.htaccess

RewriteRule .*  file-serving.php [QSA,L]

file-serving.php content

<?php
require_once __DIR__ . '/../../vendor/autoload.php';

use GisoStallenberg\FileServing\FileServer;

$fileserver = new FileServer('../../serve-me/', 'serve-it/');
$fileserver->serve(); // will server http://example.com/serve-it/example.txt when ../serve-me/example.txt exists, gives a 404 otherwise
<?php
require_once __DIR__ . '/../../vendor/autoload.php';

use GisoStallenberg\FileServing\FileServer;
use Symfony\Component\HttpFoundation\Response;

$fileserver = new FileServer('../../serve-me/', 'serve-it/');
$response = $fileserver->getResponse(); // do not serve yet

if ($response->getStatusCode() === Response::HTTP_NOT_FOUND) {
    $fileserver = new FileServer('../../serve-other-dir/', 'serve-it/'); // check another directory
    $response = $fileserver->getResponse();
}

$response->send();

Credits

Niels Nijens (https://github.com/niels-nijens/)

About

Serve files to the browser that are not available directly

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages