2016-03-02 91 views
1

我想問你一些我真正混淆解決的問題。我的WordPress網站有問題,它的網址重複,結果相同。在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' ), 
    )); 
} 

的問題是,如何重定向或禁用URL不news塞與news塞至網址是什麼? 謝謝。

+0

最壞的情況下,你很可能通過修改.htaccess文件做到這一點。添加一個重寫條件。 – Rasclatt

+0

@Rasclatt你可以給我任何樣品嗎? –

回答

1

我得到了解決,在這種情況下,我在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; 
     } 
    } 
}