0

add_action('template_redirect', function () {
    if (is_404()) {
        $requested_url = $_SERVER['REQUEST_URI'];
         if (strpos($requested_url, '.js') !== false || strpos($requested_url, '.css') !== false) {
            wp_redirect(home_url(), 301);
            exit;
        }
    }
});

Jagdish Sarma Asked question 2 days ago
Add a Comment