shlink/module/Core/config/routes.config.php

16 lines
289 B
PHP
Raw Normal View History

2016-04-10 10:38:07 +03:00
<?php
use Shlinkio\Shlink\Core\Action\RedirectAction;
2016-04-10 10:38:07 +03:00
return [
'routes' => [
[
'name' => 'long-url-redirect',
'path' => '/{shortCode}',
'middleware' => RedirectAction::class,
'allowed_methods' => ['GET'],
],
2016-04-10 10:38:07 +03:00
],
2016-04-17 20:34:16 +03:00
2016-04-10 10:38:07 +03:00
];