I want to change my website\'s dynamic urls to Search Engine Friendly URL\'s
Now the urls like this www.website.com/news.php?id=127591 , I want it became this www.websit
You need to inspect the URI in the HTTP request line (i.e. %{THE_REQUEST}) as the other could already have been rewritten (like in your case):
%{THE_REQUEST}
RewriteCond %{THE_REQUEST} ^GET\ /news\.php\? RewriteCond %{QUERY_STRING} ^id=([0-9]+) RewriteRule ^news\.php /news/%1? [R=301,L]