Content duplication issue with dynamic URLs

This issue is not necessarily with wordpress, rather Google allows you to exclude specific url parameters. So you should exclude the session_id parameter, and possible others… have a look around the Craw->url parameters section of you webmaster account. There are a number of different options, depending on what the roles of your parameters are. https://www.google.com/webmasters/tools/crawl-url-parameters?

Avoid the removal of “https:” from URLs

It was caused by CloudFlare https (which doesn’t set the $_SERVER[‘HTTPS’] variable), I solved it by forcing: $_SERVER[‘HTTPS’] = ‘on’; in the webserver configuration. After doing so I could also disable the CloudFlare Flexible SSL plugin, and get a little performance gain.

My php header() function is not working [closed]

I figured it out. Hours and hours of banging my head against a wall and it turns out all this needed was one simple line: ob_clean(); Somewhere in some included file there’s probably one line of whitespace that is screwing things up. ob_clean() will work for now. Thanks for the effort everyone who helped!

WordPress converts media extention URL automatically to video player

You should consider using the Auto-embeds Disabler plugin here: https://gist.github.com/ocean90/3796628 Note that it’s actually just a single line of code, if you prefer to add that to your functions.php – but I’d suggest keeping it as a plugin so you can easily activate/deactivate that functionality. remove_filter( ‘the_content’, array( $GLOBALS[‘wp_embed’], ‘autoembed’ ), 8 ); Note that … Read more