zazu Posted May 10, 2015 Share Posted May 10, 2015 (edited) 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] Edited May 10, 2015 by zazu Quote Link to comment https://forums.phpfreaks.com/topic/296176-friendly-url-rewriteing-using-htaccess-problem/ Share on other sites More sharing options...
zazu Posted May 12, 2015 Author Share Posted May 12, 2015 Any help?? Quote Link to comment https://forums.phpfreaks.com/topic/296176-friendly-url-rewriteing-using-htaccess-problem/#findComment-1511511 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.