Thank Ravinder for your response.. I am use this code but It's gives on url bar
cricf.com/cricket-article.php?cardid=3730
When I do some changes like below It gives on url bar
cricf.com/cricket-article/cardid/3730/
But with page not found 404 error
RewriteEngine on RewriteCond %{THE_REQUEST} /cricket-article.php?cardid=([^\s&]+) [NC]
RewriteRule ^ cricket-article/cardid/%1? [R=302,L]
RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^cricket-article/cardid/([^/]+)/?$ cricket-article.php?cardid=$1 [L,QSA,NC]
Any Suggestions..?