What's the fastest way to redirect a user?

Maybe I can help more if you explain what's needed to be done in more details.
<a href="new-link">link</a> works
 
Maybe I can help more if you explain what's needed to be done in more details.
<a href="new-link">link</a> works

I mean an automatic redirect without user action.
 
Pure Javascript which redirects when ever the page loads.

JavaScript:
(function() {
   window.location.href = "link where to redirect;
})();
 
Why you should use Javascript to do a redirect when javascript is loaded when the webpage is fully loaded as first?
Just do it with .htaccess

PHP:
RewriteEngine On
RewriteRule ^(.*)$ https://domain.com/ [R=301]
 
Back
Top