Did you know Windows 10 keeps a record of the websites you view? It doesn't matter which browser you use, if you use "in private" or "incognito" mode, or if…
The following WordPress PHP function shows how to redirect the author page to the home page. It will redirect using the HTTP 301 code, which tells the browser that the…
Problem When trying to log into a WordPress website, using the wp-login / wp-admin page - the page redirects back to the login page after entering in the username and…
The following htaccess code rule shows how to remove a single query parameter from a URL - leaving any existing parameters. This is done using a rewrite rule and will…
After many years of using USB flash drives I've managed to use one until it's official end of life. Normally drives would be lost long before this point - but…
The following code can be used to automatically redirect users after they've reset their password. This code will automatically redirect them to the home page. function itsg_after_password_reset_redirect() { wp_redirect( home_url()…
wp-login, also known as "The Login Form" is the standard place where authentication is handled on WordPress websites. It's the screen users see and interact with when registering, logging in…
The following WordPress filter will redirect the wp-login.php register page to /register For example FROM http://example.com/wp-login.php?action=register TO http://example.com/register/ This allows you to create a register page using a third-party forms…
When Google Chrome requests a website, e.g. 'demo.itsupportguides.com' and receives a redirect response - for example the '/cgi-sys/defaultwebpage.cgi' error page - it caches this response. Browser level caching is a common…