Recently, we made all pages be HTTPS via .htaccess:
RewriteEngine on RewriteCond %{HTTPS} off RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
The problem is that I get the “Circular redirect path detected” from the Facebook debugger because the source URL is https but the og: http url (so we don’t lose all of our old ones) and then it gets a 302 loop returned to https.
How can I make Facebook an exception to this .htaccess rule?
source share