add_action('template_redirect', function() {
$current_url = $_SERVER['REQUEST_URI'];
// Dynamically redirect AMP URLs (e.g., /product/.../amp/)
if (preg_match('#^/product/(.+)/amp/?$#', $current_url, $matches)) {
// Dynamically create the clean URL without the /amp/ part
$redirect_url = '/product/' . $matches[1] . '/';
wp_redirect($redirect_url, 301);
exit;
}
// Dynamically handle pagination within product-category URLs
if (preg_match('#^/product-category/(.+)/page/(\d+)/?$#', $current_url, $matches)) {
// Capture the product category and page number dynamically
$category_slug = $matches[1];
$page_number = $matches[2];
// If it's page 2, remove the /page/2/ and redirect to the clean URL
if ($page_number == 2) {
$clean_url = '/product-category/' . $category_slug . '/';
wp_redirect($clean_url, 301);
exit;
}
// Optionally, handle other pagination redirects (e.g., page 3, page 4, etc.)
// Example: Redirect to the clean URL without page number for any page greater than 2
$clean_url = '/product-category/' . $category_slug . '/page/' . $page_number . '/';
wp_redirect($clean_url, 301);
exit;
}
// Additional dynamic handling can be added here based on more URL patterns as needed
});
FG-CT1A Star crystal trophy - Unique, Customized Corporate Gifts