I want to rewrite this in SEO friendly url.
From – www.example.com/section.php?name=website
To – www.example.com/section/website
I tried this:
RewriteEngine On
RewriteRule ([^/.]+)/([^/.]+)?$ section.php?type=$1&service=$2 [NC,L]
I am fetching data using GET method in section.php and pass to the another page but after opening sub folder like www.example.com/{foldername}
it returns to the section.php
Thanks. I will appreciate your help.
2
Answers
This helps me
With your shown samples, please try following htaccess Rules file. Please make sure you clear your browser cache before testing your URLs.