I want to redirect my blogger website to a external url There is tow code to do that
<meta http-equiv="Refresh" content="0; url='https://google.com'<script>window.location.href = "https://google.com";</script>I want to know what is the fastest way to redirect and what is the most supported method by browsers?
Having your site redirect your users would determine on how you want to accomplish this.
If you want it to auto load after a few seconds.
<meta http-equiv="refresh" content="5"; url="https://www.google.com"/>
The "content=5" allows you to set the time frame (in seconds) on how fast/slow you want your website to redirect your users.
Otherwise, if you want them to click on a button to activate your redirect,
<button type="button" href="https://www.google.com">Refresh</button>
This will allow your users to click on the button and your website is replaced with the new on. If you want your website to stay opened up, and want the new website in a new tab, use this code;
<button type="button" href="https://www.google.com" target="_blank">Refresh</button>