I hava a some problem in .htaccess..
my site url is for ex. www.example.com/
when we go to city page using dropdown..its come to index.php?city=cityname (its to be correct)
when we go to about us page it comes to be indexpage instead of about us page
city page url : www.example.com/cityname
about us url : www.example.com/about-us
below htaccess code;
when we go about us page it comes to index page
RewriteRule ^([a-zA-Z0-9_-]+)$ index.php?city=$1
RewriteRule ^about-us$ about_us.php
You need to just change the order of rewrites. So, use this: