我使用这段代码是为了当用户访问旧的permalink时,他会被重定向到新的permalink。
add_action( \'template_redirect\', \'redirect_to_external_url\' );
function redirect_to_external_url() {
if ( is_page( \'https://www.domain.com/brands/haute-couture/\' ) ) {
wp_redirect( \'https://www.domain.com/brands/fashion/\', 301 );
exit;
}
}
然而,这似乎不起作用。我也在使用Nginx。任何帮助都将不胜感激。