PHP kullanarak ediyorsanız, iyi bir Apache sunucu üzerinde olabilir - size ziyaretçilere huzurlu URI sağlamak için Apache'nin mod_rewrite kullanmak hangi durumda.
Burada kısa bir örnek:
RewriteEngine on
RewriteRule ^Search/([^/\.]+)/([^/\.]+)/([^/\.]+)/?$ search.php?key=$1&type=$2&term=$3 [L,NC]
Bu çevirmek istiyorum
http://www.domainname/Search/books/title/Mission%20Impossible/
Içine
http://www.domainname/search.php?key=books&type=title&term=Mission%20Impossible
The [L] means no further rules would be evaluated
The [NC] makes this case-insensitive (so "Search" and "search" would both work)