Delete post: 2 wp_redirect if pages are different

I think that this native function will help you:

 if ( is_single() ) {
     //do stuff
 }

You will find more information in the WP developers section.
It works for any post type, except attachments and pages.