Creating redirects from old pages to new ones
For a website I need to implement redirects that will route the user from the old admin panel to the new one.
I found this plugin that does exactly what I need, but it seems to be decrepitated, cant find the github page for it either. (https://v2.filamentphp.com/plugins/redirects).
Anyone know another plugin that does this? If not, what is the best way to implement something like this?
Solution:Jump to solution
never tried it.. but I found another redirect package for you... https://github.com/codedor/filament-redirects
GitHub
GitHub - codedor/filament-redirects: This package allows you to add...
This package allows you to add redirects via Filament manually or with an import - codedor/filament-redirects
4 Replies
Solution
never tried it.. but I found another redirect package for you... https://github.com/codedor/filament-redirects
GitHub
GitHub - codedor/filament-redirects: This package allows you to add...
This package allows you to add redirects via Filament manually or with an import - codedor/filament-redirects
Thanks that works
another option is just to use the .htaccess file if you use apache
Thanks. I am looking for a manageable way inside of filament, where you can easily add redirects and edit them. So adding them in the .htaccess isn't really the way.