Skip to content

Releases: samsonasik/RedirectHandlerModule

1.3.3

07 Dec 00:00
1.3.3
c960587

Choose a tag to compare

revert check url

1.3.2

06 Dec 23:57
1.3.2
17ae69c

Choose a tag to compare

remove unused check

1.3.1

06 Dec 22:27
1.3.1
2ffc30a

Choose a tag to compare

bug fixes: same route name with different Query parameter should be redirected, with use case:

  • current url: /bar
  • target redirect url: /bar?success=1

expected: should be redirected /bar?success=1. It previously redirected to default url config. For example on following redirect:

<?php

namespace Application\Controller;

use Zend\Mvc\Controller\AbstractActionController;

class BarController extends AbstractActionController
{
    public function indexAction()
    {
        $success = $this->params()->fromQuery('success', 0);
        if ($success == 0) {
            return $this->redirect()->toUrl('/bar?success=1');
        }

        return ['success' => $success];
    }
}

1.3.0

04 Dec 16:23
1.3.0
e1bc90e

Choose a tag to compare

added exclude_hosts option

1.2.5

24 Oct 07:19
1.2.5
e02233b

Choose a tag to compare

Fixes wrong Current Host definition

1.2.4

24 Oct 06:53
1.2.4
23473ae

Choose a tag to compare

Fixes handler when target URI is an absolute URI

1.2.3

22 Oct 22:48
1.2.3

Choose a tag to compare

doc fix to allow to be used when using zend-evm v3

1.2.2

20 Oct 19:13
1.2.2

Choose a tag to compare

  • refactor RedirectFactory

1.2.1

08 Oct 18:52
1.2.1
72241ab

Choose a tag to compare

installable via zend-component-installer

1.2.0

20 Sep 15:36
e93c56a

Choose a tag to compare

  • add options to exclude urls to be always allowed to be redirected.