Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
src
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

middlewares/www

Latest Version on Packagist Software License Build Status Quality Score 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.

About

PSR-15 middleware to add or remove the www subdomain

Topics

Resources

License

Packages

No packages published

Languages

You can’t perform that action at this time.