Adding a rewrite rule to page that has no fixed variables and pagination

Got it to work, changing the regex from (.+) to (.*)

Maybe helpful for others searching same rewrite on search and pagination.

 add_rewrite_rule('discover/interiors/interior-results/(.*)/page/([0-9]{1,})/?', 'index.php?pagename=discover/interiors/interior-results&tag1=$matches[1]&paged=$matches[2]', 'top' );
 add_rewrite_rule('discover/interiors/interior-results/(.*)', 'index.php?pagename=discover/interiors/interior-results&tag1=$matches[1]', 'top' );