I am using mod_write to pull urls out of my database. I have it working at a basic level, but what I am stuck on is creating complex URLs using various slugs pulled from the database as directories in the URL.
Currently the url before using mod_rewrite looks like:
www.domainname.co.uk/company?=1&staff=3
Which takes you to a staff profile within an appropriately styled company page.
But what I want the URL to look like is:
www.domainname.co.uk/COMPANY-NAME/STAFF-NAME
My htaccess currently looks like:
RewriteEngine On
RewriteRule ^c/(.*)$ ./company.php?company=$1
Which results in the URL
www.domainname.co.uk/c/COMPANY-NAME
How do I add the second level directory?