将基础添加到永久链接

Add base to permalink

为前置链接添加了 'custom structure' 并放置了“/mybase/%postname%/”

它使所有帖子看起来像 'www.mysite.com/mybase/postname'

但它不适用于页面。

页面名称仍然是 'www.mysite.com/pagename'。

如何更改?

将此代码放入您的 functions.php 文件中。

add_action( 'init', 'custom_page_rules' );

function custom_page_rules() {
    global $wp_rewrite;
    $wp_rewrite->page_structure = $wp_rewrite->root . '/mybase/%pagename%'; 
}

输入这段代码后,你想在 wordpress 后端保存一次永久链接。