gkimball / php301mapper
Maps an array of key val pairs to 301 redirects
Installs: 18
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:project
Requires (Dev)
- phpunit/phpunit: ^6.0
This package is not auto-updated.
Last update: 2025-03-24 18:28:47 UTC
README
Include the Php301Mapper class to your header file. Add the following to the top of your 404 loader page.
$redirects = [
'/index.php?page1OLD' => '/index.php?page1NEW',
'/index.php?page2OLD' => '/index.php?page2NEW',
'/index.php?page3OLD' => '/index.php?page2NEW',
];
MapFactory::Mapper($_SERVER['REQUEST_URI'],$redirects)->run();
Dev Installation
composer install