↧
Answer by Joe for Wordpress rss feed except from https
You can use this: RewriteEngine On #Check to see if HTTPs is not on, turn it on. RewriteCond %{HTTP:X-Forwarded-SSL} !on RewriteCond %{REQUEST_URI} ^\/(foobar) RewriteRule (.*) https://%{HTTP_HOST}/$1...
View ArticleAnswer by Mukesh Ram for Wordpress rss feed except from https
You need to use template redirect hook. add_action( 'template_redirect', 'template_redirect', 1 ); function template_redirect() { if ( is_ssl() && ! is_admin() ) { if ( 0 === strpos(...
View ArticleWordpress rss feed except from https
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...
View Article