mirror of
https://github.com/shlinkio/shlink.git
synced 2024-12-21 12:14:53 +03:00
14 lines
231 B
PHP
14 lines
231 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
return [
|
||
|
|
||
|
'not_found_redirects' => [
|
||
|
'invalid_short_url' => null, // Formerly url_shortener.not_found_short_url.redirect_to
|
||
|
'404' => null,
|
||
|
'base_url' => null,
|
||
|
],
|
||
|
|
||
|
];
|