PHP code example of ctw / ctw-middleware-trailingslash
1. Go to this page and download the library: Download ctw/ctw-middleware-trailingslash library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
ctw / ctw-middleware-trailingslash example snippets
use Ctw\Middleware\TrailingSlashMiddleware\TrailingSlashMiddleware;
// In config/pipeline.php - place early in the pipeline
$app->pipe(TrailingSlashMiddleware::class);
// These URLs are NOT redirected:
/assets/style.css
/images/logo.png
/downloads/report.pdf
/scripts/app.js
// These URLs ARE redirected (no extension):
/about → /about/
/products → /products/
/contact → /contact/
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.