| Package Data | |
|---|---|
| Maintainer Username: | ssx |
| Maintainer Contact: | scott@dor.ky (Scott Wilcox) |
| Package Create Date: | 2015-10-30 |
| Package Last Update: | 2019-09-25 |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-10-23 15:02:25 |
| Package Statistics | |
|---|---|
| Total Downloads: | 1,204 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 1 |
| Total Watchers: | 2 |
| Total Forks: | 0 |
| Total Open Issues: | 0 |
A simple Laravel package to deal with handling 301 redirects.
- Add to `"ssx/threeohone": "0.0.1",` to composer.json
- Add Service Provider `SSX\ThreeOhOne\Providers\ThreeOhOneServiceProvider::class` to config/app.php
- Add Global Middleware `\SSX\ThreeOhOne\Middleware\CheckForRedirect::class` to Http/Kernel.php
- Run vendor:publish
- php artisan migrate
- Add records to redirect table
#### Usage Two types of redirect, 'domain' and 'path'. A domain redirect will redirect:
www.site.com/path/to/file.html to http://test.com
A path redirect will ignore the domain only use the requested path, ie:
/path/to/file.html to http://example.com
Which is useful on sites that have subdomains.