12👍
✅
You can achieve that using Javascript, example:
window.setTimeout(function () {
location.href = "http://myurl.com";
}, 5000); // refresh/redirect after 5 seconds.
👤Ali
Source:stackexchange.com