spatie / laravel-missing-page-redirector

Redirect missing pages in your Laravel application
https://freek.dev/598-retain-your-seo-worth-by-correctly-redirecting-missing-pages-in-a-laravel-application
MIT License
488 stars 38 forks source link

Adding get parameters support #82

Closed dovydasbu closed 11 months ago

dovydasbu commented 11 months ago

It would be great to have a support for redirect which inlcudes get parameters.

For example:

/category/inner-category - this should not redirect /category/inner-category?foo=bar - this should redirect to defined value

config:

[
      '/category/inner-category?foo=bar' => '/url-to-redirect',
]