# RewriteRule ^/page.html$ /nouvelle-page.html [L,R=301]
 # RewriteRule ^/page.html$ /nouvelle-page-temporaire.html [L,R=302]

Vous l'aurez remarqué, R=301 est pour les redirections permanentes et R=302 est pour les redirections temporaires. Vous pouvez également utiliser respectivement R=Permanent et R=temp

 # RewriteCond %{REQUEST_URI} !^/rubrique/.+belle.*
 # RewriteRule ^/rubrique/([0-9]+)-(.*)$ /rubrique/$1-belle-$2 [L,R=301]