Site icon Hip-Hop Website Design and Development

Find out how to change URL construction for pagination pages?

Hello I am new to WordPress therefore if my query was easy or silly I am sorry, however please somebody inform me the way to change URL for pagination pages.

Presently I am having URL for pagination pages as:

www.instance.com/category_name.html/1
www.instance.com/category_name.html/2
www.instance.com/category_name.html/3

and so on.

However I would like to alter this URL construction as:

www.instance.com/category_name.html?web page=1
www.instance.com/category_name.html?web page=2
www.instance.com/category_name.html?web page=3

and so on.

I attempted one thing like this nevertheless it’s not working.

add_action( 'init', 'add_author_rules' );
perform add_author_rules() {
    add_rewrite_rule(
        "bycategory/108-abodes-of-vishnu)/?$",
        "category_name=$matches[1]&paged=$matches[2]",
        "high");
}

Any assist could be drastically appreciated.