I'm trying to do pretty urls but seems that they wont work for some reason. What I'm trying is to redirect this two URLs
https://www.example.com/page.php?page=newpage
https://www.example.com/page.php?page=newpage&countryId=1
to
https://www.example.com/newpage/
https://www.example.com/France/newpage/ <--- France is with countryID=1 in db.
What I have tried in .htaccess
is
RewriteEngine on
RewriteCond %{QUERY_STRING} ^page\=newpage&countryId\=$
RewriteRule ^page\.php$ https://www.example.com/France/newpage/? [R=301,L]
RewriteCond %{QUERY_STRING} ^page\=newpage$
RewriteRule ^page\.php$ https://www.example.com/newpage/? [R=301,L]
What I get is blank pages for both.