在 Wordpress 自定义永久链接中重定向重复的 URL

Redirect Duplicated URL in Wordpress Customized Permalinks

我想问你一些我很困惑的事情要解决。我的 wordpress 网站有问题,重复 URL 结果相同。

  1. www.site.com/some-blog-post
  2. www.site.com/news/some-blog-post

当我修改我的主题功能时,我得到了 2 号:

add_action( 'init', 'add_news_slug_permalink', 1 );
function add_news_slug_permalink() {
    register_post_type( 'post', array(
        'rewrite' => array( 'slug' => 'news'    ),
    ) );
}

问题是,如何将没有 news slug 的 URL 重定向或禁用为带有 news slug 的 URL? 谢谢。

我找到了解决方案,在这种情况下,我在 function.php 中添加了一个操作,就像:

add_action('template_redirect', 'redirect_to_news_slug', 20);

function redirect_to_news_slug() {

    global $post;

    /**
     * Check if the page is single Post
     */
    if ($post->post_type == 'post' && (is_category() == false) &&
        (is_single() == true) && (is_home() == false)) {

        $currentUrl = $_SERVER["REQUEST_URI"];

        /**
         * Remove slash from URL, and get the first slug
         */
        $partOfUrl = array_filter(explode('/', $currentUrl));

        /**
         * Check if URL doesn't have 'news'
         */
        if ($partOfUrl[1] !== 'news') {

            /**
             * set new URL with 'news' slug
             */
            $newUrl = home_url().'/news/' . $partOfUrl[1];

            /**
             * Redirect to new URL
             */
            wp_redirect( $newUrl,301 );
            exit;
        }
    }
}