I have a url like this -
http://www.xyz.in/zone/zone.php?zone_id=zone_118
I need to write rule in .htaccess such that the above url should be executed with below url :
http://www.xyz.in/zone/zone/zone_118 OR
http://www.xyz.in/zone/zone_118
Any help will be highly useful
I am trying as below but not getting any luck :
 RewriteEngine on
 RewriteCond %{QUERY_STRING} zone_id=$1
 RewriteRule ^zone/zone\.php$ /zone/?zone_id=([^\&\ ]+) [L,R=301]
 Redirect one clean URL to a new clean URL
