Hi guys,
I have 2 categories in my website one is CONTRY and the other one is TOWN.
Now the non-friendly URL looks something like this:
1. mywebsite.com/country.php?url=clients-in-england (for country category)
2. mywebsite.com/town.php?url=clients-in-london (for town category)
Now i want those nonfriendly url's to be something like this:
1. mywebsite.com/country/clients-in-england
2. mywebsite.com/town/clients-in-london
How can i exactly do this using .htaccess
I've tried something but not working.
# redirect "/section.php?id=xxx" to "/section/xxx"
RewriteCond %{REQUEST_URI} \s/town\.php\?url=([a-zA-Z0-9_-]+)\s [NC]
RewriteRule ^ /town/%1? [R=301,L]
# internally rewrite "/section/xxx" to "/section.php?id=xxx"
RewriteRule ^oras/([a-zA-Z0-9_-]+)$ /town.php?url=$1 [L]