/var/www/flurhymez
NameSizeModeActions
app/-0755rm
bootstrap/-0755rm
config/-0755rm
database/-0755rm
node_modules/-0755rm
public/-0755rm
resources/-0755rm
routes/-0755rm
storage/-0755rm
tests/-0755rm
vendor/-0755rm
.editorconfig2580644editdlrm
.env10150644editdlrm
.env.example8990644editdlrm
.gitattributes1110644editdlrm
.gitignore2070644editdlrm
.styleci.yml1940644editdlrm
artisan16860644editdlrm
composer.json19560644editdlrm
composer.lock3490860644editdlrm
package-lock.json3360810644editdlrm
package.json10550644editdlrm
phpunit.xml12020644editdlrm
README.md39990644editdlrm
server.php5630644editdlrm
webpack.mix.js16780644editdlrm
Edit: /var/www/flurhymez/server.php (563B)
*/ $uri = urldecode( parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH) ); // This file allows us to emulate Apache's "mod_rewrite" functionality from the // built-in PHP web server. This provides a convenient way to test a Laravel // application without having installed a "real" web server software here. if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) { return false; } require_once __DIR__.'/public/index.php';