I am working on seo of my website,after reading some articles i found out about seo friendly urls so i decided to change all dynamic url into static url.
for eg: most of the urls are like www.abc.com/final.php?id=1&name=name-of-file
but i want to change the urls into static urls like www.a.com/name-of-file/1
I tried to edit .htaccess file but its not working.
my .htaccess file
Options +FollowSymLinks
RewriteEngine on
RewriteRule final/id/(.*)/name/(.*)/ final.php?id=$1&name=$2
2
Answers
Try it like this,
You can use: