I need help for PHP My url is like this..............
http://localhost/cabs/airport.php?loc=majestic
and i want to change it like this.......
http://localhost/cabs/airport/loc/majestic
OR
http://localhost/cabs/airport/majestic
My code in .htaccess file
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule airport-loc-(.*).htm$ airport.php?loc=$1
Any one please help me! Thanks in advance.