I’ve been wandering with CRUD scaffolding and I wonder why in Controller methods for delete and save it makes a forwards to index page, instead of redirect.
The best practices always recommend a redirect after a modification method, to prevent errors on reload. Furthermore, this way the new request would be a GET request. If index method would attend only GET requests as it should be, this wouldn’t work.
And what is supposed to be the method indexX (that makes a redirect)?