Thoughts
It's so easy to over-complicate Apache config files.
2 ways to do HTTP to HTTPs upgrades
```apache
RewriteEngine on
RewriteCond %{SERVER_NAME} =*.ourjseditor.com [OR]
RewriteCond %{SERVER_NAME} =ourjseditor.com
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=perman
RewriteRule ^ https://ourjseditor.com%{REQUEST_URI} [END,NE,R=perm
```
Or
```
Redirect permanent / "https://ourjseditor.com/"
```
I don't even know what I was doing.
Edit (Sep 13, 2022): These two snippets definitely aren't equivalent and I don't recommend using either of them without understanding them.