mirror of
https://github.com/php/web-master.git
synced 2026-03-23 23:32:16 +01:00
* Add docker development setup * Centralize DB credentials * Remove symlink in favor of separate static file serving * Update generated composer files
8 lines
196 B
PHP
8 lines
196 B
PHP
<?php
|
|
|
|
if (\str_starts_with($_SERVER['REQUEST_URI'], '/shared/')) {
|
|
header('Location: http://localhost:8002' . \substr($_SERVER['REQUEST_URI'], \strlen('/shared')));
|
|
exit;
|
|
}
|
|
|
|
return false; |