My page contains this:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="refresh" content="5; URL=http://www.example.com">
</head>
<body>
test
</body>
</html>
It redirects in Chrome, but not in Firefox. Why not?
In Firefox autorefresh has been disabled by default.
To enable autorefresh in your browser:
It would be best to use alternatives such as a JavaScript or PHP Redirect.
JavaScript
window.setTimeout(function() {
window.location.href = 'http://www.google.com';
}, 5000);
PHP
header("refresh:5;url=wherever.php");