如何使用.htaccess重定向到另一个URL后重写URL

I have problem to redirect page in paging system. I have write .htaccess as follows.

RewriteRule ^news.html?page=2 allnews.php?type=1&page2 [NC]
RewriteRule ^news.html allnews.php?type=1 [NC]

Actually I want to add paging system in the news.html. But it is not working :(

Please help me.

Probably final URI should be allnews.php?type=1&page=2 instead of allnews.php?type=1&page2.

RewriteEngine On

RewriteRule ^news\.html$ /allnews.php?type=1 [NC,QSA]