radnan/rdn-trailing-slash

Zend Framework module to trim trailing slashes from requests

v1.0.2 2017-09-06 00:56 UTC

This package is not auto-updated.

Last update: 2024-04-27 13:51:27 UTC


README

The RdnTrailingSlash ZF2 module trims the trailing slash in a path and then redirects the request if it does not match an existing route.

Installation

  1. Use composer to require the radnan/rdn-trailing-slash package:

    $ composer require radnan/rdn-trailing-slash:1.*
  2. Activate the module by including it in your application.config.php file:

    <?php
    
    return array(
        'modules' => array(
            'RdnTrailingSlash',
            // ...
        ),
    );

That's it! The module will take care of the rest.