radnan / rdn-trailing-slash
Zend Framework module to trim trailing slashes from requests
Installs: 11 465
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 1
Open Issues: 0
Requires
- zendframework/zend-mvc: 2.* || ^3.0
Requires (Dev)
This package is not auto-updated.
Last update: 2024-12-21 17:01:51 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
-
Use
composer
to require theradnan/rdn-trailing-slash
package:$ composer require radnan/rdn-trailing-slash:1.*
-
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.