I had someone DM me this morning on Twitter and ask me what I recommended for them to use to redirect a browser using Javascript. My gut reaction was to tell them not to do it with JavaScript, but to use Apache Redirection instead, but I went ahead and shared w/ them three ways I […]
Example .htaccess Apache Redirect
From time to time we will install a website and want it to redirect to a directory or file inside of it’s root directory besides the default index.htm, index.html, or index.php file. Here’s an example of how this can be achieved using .htaccess with Apache. redirect /index.html http://www.yourwebsite.com/sitefile.html As you can see, when a browser […]