I've been looking around for a method to simplify URL query strings, ultimately to create more SEO friendly URLs.
Essentially, where a standard URL using $_GET in PHP might be: website.com/portfolio/item.php?id=item-slug...
I'd like it to be: website.com/portfolio/item-slug.
I'm aware there are many ways of achieving this, some involving .htaccess, but I haven't been able to find one prefered method. Can anyone tell me what the most convenient, up to date method might be?