I searched and didn't find an answer without javascript.
I need to somehow redirect the user to other page without using javascript and after i already set the header... is it possible?
I searched and didn't find an answer without javascript.
I need to somehow redirect the user to other page without using javascript and after i already set the header... is it possible?
You can output a meta refresh.
<meta http-equiv="refresh" content="0; url=http://example.com/">
While it technically belongs only in the <head>
, I tested several browsers and they all appear to process it even in the <body>
.