How to Add Multiple Redirects to httpd.conf in MAMP PRO 4.1.1 Hello, I recently converted my entire primary virtual host to both Google's AMP standard, as well as to SSL/TSL. As a result, I had to add a redirect to MAMP PRO 4.1.1's httpd.conf template file. After several days of online research, head-scratching and frustration, I finally got the following to work for me by placing it right before the closing tag in the httpd.conf template file: [code] ServerAdmin wordweaver777@gmail.com ServerName billkochman.com RedirectMatch 301 (.*) https://www.billkochman.com$1 [/code] Please note that I had to add spaces in the lines above, because this forum kept sending me an error message regarding trying to actively redirect. I tried using bb code -- [code] and [/code] -- but even that did not work. Sorry. The only problem with the above, is that if a person uses http://billkochman.com in their web browser, it does NOT redirect them to https://www.billkochman.com. Instead, it redirects them to https:billkochman.com instead. While this may be viewed as a minor issue, being as https://billkochman.com is still a secure connect, I would much prefer that all http requests are redirected to https://www.billkochman.com, because I have established that as my preferred domain in the Google Search Console. Aside from the above issue, I have three other domains which I am going to let expire, so that I can just concentrate on my primary domain. These three domains are the following: armageddonbbs.com endtimeprophecy.net endtimeprophecy.org Until they do expire later this year or early next year, I would like to also redirect all three of them to https://www.billkochman.com as well. So in addition to improving my first redirect, as noted above, how can I add redirects for these three other domains, below the code that I am using above? Currently, I have an index.html file at the top level of each of those three virtual hosts, which contains a simple redirect javascript in the head section of the file . . . although I know that this is not the "official" or preferred way to do it. I have also read that Apache frowns upon rewrites in .htaccess files, preferring that redirects instead take place in the httpd.conf file. Thus my two questions above. Any assistance would be greatly appreciated. I am an old man with very limited experience with such thing, so I ask for your patience regarding these matters. Kind regards, Bill K.