Changing post per page causing 404 for pagination. Need a redirect htaccess rule
i found a solution with no use of htaccess but using the WP function wp_redirect. copy and past on functions.php function redirect_paginated_404() { if (is_404()) { $url = $_SERVER[‘REQUEST_URI’]; //read the url $search=”/page/”; //chose the word of the url if ( strpos( $url, $search ) !== false ) { //if i find the string /page/ … Read more