Quantcast
Channel: Wordpress rss feed except from https - Stack Overflow
Browsing latest articles
Browse All 3 View Live

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 Article



Answer 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 Article

Wordpress 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
Browsing latest articles
Browse All 3 View Live


Latest Images