This forum has moved to a new location and is in read-only mode. Please visit talk.octobercms.com to access the new location.
mattm
How can I redirct with Twig?
I found this {% redirect %}
https://craftcms.com/docs/templating/redirect
Does October have something like this? I get Unknown redirect tag.
Right now I have to redirect using php
# Filename not in Database
if (!Gallery::where('name', '=', $name)->exists()) {
return Redirect::to('/404');
exit();
}
It would be much simpler to use something like
{% if not record.name %}
{% redirect 404 %}
{% endif %}
Last updated
1-2 of 2