redirect to 404 page if product is not found

How to configure and adapt Aimeos based shops as developer
Forum rules
Always add your Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
User avatar
aimeos
Administrator
Posts: 7914
Joined: 01 Jan 1970, 00:00

Re: redirect to 404 page if product is not found

Post by aimeos » 28 May 2021, 09:35

If you are using Laravel, you may use its redirect() function for redirecting to another URL in case of an error.
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos, Image give us a star

User avatar
aimeos
Administrator
Posts: 7914
Joined: 01 Jan 1970, 00:00

Re: redirect to 404 page if product is not found

Post by aimeos » 03 Jun 2021, 09:08

redirect() only returns a response object which isn't sent to the browser by default. A quick and dirty solution could be to use this in the catalog/detail component:

Code: Select all

echo redirect(...);
exit();
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos, Image give us a star

Post Reply