Craft 3 redirect plugin provides an easy way to enter and maintain 301 and 302 redirects and 404 pages. The plugin provides a clear user interface for admin and non-admin users.
Right now it's looking for the table dolphiq_redirects specifically without considering table prefix settings. This causes an Internal Server Error because it can't find the table.
https://github.com/Dolphiq/craft3-plugin-redirect/blob/master/src/services/Redirects.php#L107
This should be:
{{%dolphiq_redirects}}
Right now it's looking for the table
dolphiq_redirects
specifically without considering table prefix settings. This causes an Internal Server Error because it can't find the table.