我想设置新的永久链接结构,如下所示。
当前网址:http://localhost/tech/?product_cat=3-sits-soffa&filter_form=svangd
新网址:http://localhost/tech/3-sits-soffa/svangd
我也尝试使用add_rewrite_tag和add_permastruct但不适合我。
以下是我使用的代码。
add_action( 'init', 'custom_rewrite1' );
function custom_rewrite1() {
add_rewrite_rule(
'(.?.+?)?(:/([0-9]+))?/?$',
'index.php?product_cat=$matches[1]&filter_form=$matches[2]',
'top'
);
}