Had webserver "infinite redirect" errors, thought it was permissions or Apache, but it was a WordPress plugin setting
No matter what, I keep getting "ERR_TOO_MANY_REDIRECTS". Is there a "proper" way to redirect all http requests to https? (other than the five listed below...) I have this: <VirtualHost *:80> ServerName example.com Redirect permanent / https://example.com/ </VirtualHost> I also tried…