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
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

Ilesyt
Ilesyt

I would really like this too.

1-2 of 2

You cannot edit posts or make replies: the forum has moved to talk.octobercms.com.