WPML
상태
해결됨

문제 개요

특정 언어에서 URL이 유효하지 않은 경우, WPML은 이 URL이 다른 언어에서는 유효한지 확인합니다. 확인이 되면 WPML은 언어 정보가 포함된 올바른 URL로 방문자를 리디렉션합니다.

하지만 이러한 동작은 사용자 정의 재작성 규칙에 문제를 일으킬 수 있습니다.

임시 해결 방법

WPML은 이 리디렉션에 wpml_is_redirected 필터를 제공합니다. 다음은 사용 방법에 대한 예입니다.

/**
* This will prevent redirection in the secondary language for the custom rule:
* '^products/([A-Za-z0-9-]+)/?' => 'index.php?pagename=new-sample&type=$matches[1]'
*/
function wpmlcore_4704_block_redirect( $redirect, $post_id, $q ) {
// Decide on which condition we should prevent the redirection
if ( isset( $q->query_vars['pagename'] ) && 'sample-page' === $q->query_vars['pagename'] ) {
return false;
}

return $redirect;
}
add_filter( 'wpml_is_redirected', 'wpmlcore_4704_block_redirect', 10, 3 );

알려진 모든 문제 →