web-dev-qa-db-ja.com

欠品の404ページではなくショップを表示

商品が見つからないときに404ページではなくショップを表示するにはどうすればよいですか。現在、ユーザーは404ページを取得していますが、これは興味を失います。

私はnginxとサーバー上のワードプレスでwoocommerceを使用しています。

1
Ro L

// Missing product redirect to product category add_filter( 'rewrite_rules_array', function( $rules ) { $new_rules = array( 'shop/([^/]*?)/page/([0-9]{1,})/?$' => 'index.php?product_cat=$matches[1]&paged=$matches[2]', 'shop/([^/]*?)/?$' => 'index.php?product_cat=$matches[1]', ); return $new_rules + $rules; } );

1
murrayac