admin管理员组

文章数量:1130349

How should I show the shop instead of a 404 page when a product is missing? Currently users get a 404 page which makes them loose interest.

I use woocommerce with wordpress on a server with nginx.

How should I show the shop instead of a 404 page when a product is missing? Currently users get a 404 page which makes them loose interest.

I use woocommerce with wordpress on a server with nginx.

Share Improve this question asked May 2, 2018 at 5:42 Ro LRo L 991 gold badge1 silver badge7 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 1

// 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; } );

How should I show the shop instead of a 404 page when a product is missing? Currently users get a 404 page which makes them loose interest.

I use woocommerce with wordpress on a server with nginx.

How should I show the shop instead of a 404 page when a product is missing? Currently users get a 404 page which makes them loose interest.

I use woocommerce with wordpress on a server with nginx.

Share Improve this question asked May 2, 2018 at 5:42 Ro LRo L 991 gold badge1 silver badge7 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 1

// 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; } );

本文标签: woocommerce offtopicshow shop instead of 404 page for missing products