Middleware to add or remove the www subdomain in the host uri and returns a redirect response

v2.0.1 2020-12-02 00:07 UTC

This package is auto-updated.

Last update: 2024-04-29 04:26:45 UTC


README

Latest Version on Packagist Software License Testing Total Downloads

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.

Requirements

Installation

This package is installable and autoloadable via Composer as middlewares/www.

composer require middlewares/www

Usage

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.