mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-27 08:18:24 +03:00
15 lines
304 B
PHP
15 lines
304 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use function Shlinkio\Shlink\Common\env;
|
|
|
|
return [
|
|
|
|
'not_found_redirects' => [
|
|
'invalid_short_url' => env('INVALID_SHORT_URL_REDIRECT_TO'),
|
|
'regular_404' => env('REGULAR_404_REDIRECT_TO'),
|
|
'base_url' => env('BASE_URL_REDIRECT_TO'),
|
|
],
|
|
|
|
];
|