So I am trying to build a clean url system in PHP to change URLS like this http://example.com/index.php?projects=05
to: http://example.com/projects/05
So far, I have figured out how to use parse_url
to map urls that look like http://example.com/index.php/projects/05
but I can't figure out how to remove the 'index.php' from the URL. Is there a way to use .htaccess to remove index.php
from the url string?
I know this is sort of a simple problem but after extensive googling, I can't find a solution.