Thursday 1 August 2019

Redirect from an HTML page



Is it possible to set up a basic HTML page to redirect to another page on load?


Answer




Try using:






Note: Place it in the head section.



Additionally for older browsers if you add a quick link in case it doesn't refresh correctly:



Redirect




Will appear as



Redirect



This will still allow you to get to where you're going with an additional click.


No comments:

Post a Comment

php - file_get_contents shows unexpected output while reading a file

I want to output an inline jpg image as a base64 encoded string, however when I do this : $contents = file_get_contents($filename); print &q...