Wednesday 28 September 2016

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

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...