カノニカルリダイレクト停止

カノニカルリダイレクト停止
//カノニカルリダイレクト停止
function my_custom_kill_canonical_redirect($redirect_url) {
    remove_action('template_redirect', 'redirect_canonical');
}
add_action('wp', 'my_custom_kill_canonical_redirect');

参考サイト

GitHub
#WordPress 特定のカノニカルリダイレクトを拒否する(どちらでもお好みで)
https://gist.github.com/hissy/5283729