Middleware to add or remove the www
subdomain in the host uri and returns a redirect response. The following types of hosts wont be changed:
- The one word hosts, for example:
http://localhost
. - The ip based hosts, for example:
http://0.0.0.0
.
- PHP >= 7.2
- A PSR-7 http library
- A PSR-15 middleware dispatcher
This package is installable and autoloadable via Composer as middlewares/www.
composer require middlewares/www
Set true
to add the www subdomain and false
to remove it.
//Remove www
$www = new Middlewares\Www(false);
//Add www
$www = new Middlewares\Www(true);
Optionally, you can provide a Psr\Http\Message\ResponseFactoryInterface
as the second argument to create the redirect response (301
). If it's not defined, Middleware\Utils\Factory will be used to detect it automatically.
$responseFactory = new MyOwnResponseFactory();
$www = new Middlewares\Www(true, $responseFactory);
Please see CHANGELOG for more information about recent changes and CONTRIBUTING for contributing details.
The MIT License (MIT). Please see LICENSE for more information.