Our mail list provider asked me to force the rss feed not to be https instead simple http.
Our site is running on Wordpress 4.7.1 and uses Easy HTTPS Redirection and SSL Insecure Content Fixer plugins to make site work.
Some people told me maybe I should add some exceptions for the .htaccess but I can't find in the forums how.
I have founded this thread but I couldn't understand It properly. htaccess force ssl except for rss feeds
This is what I found in my .htaccess file
# BEGIN HTTPS Redirection Plugin
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
</IfModule>
# END HTTPS Redirection Plugin
Thanks for the help. Gergo