I've got a rewriting scheme going on that was working fine. Basically, anything in the url is passed as a querystring to index.php, so /dave/bob is rewritten to /index.php?page=dave/bob. I deal with the parsing of this in index.php. Here's my .htaccess:
RewriteEngine on
RewriteRule ^([^\.]+)?$ index.php?page=$1 [L]
The problem I'm having is that sometimes the url is displaying incorrectly in the address bar. See these two examples: working and not working. The same problem occurs with the services page. For those of you who'd rather not visit external links, goldseal.skilldrick.co.uk/contact is displaying as goldseal.skilldrick.co.uk/contact/?page=contact in the address bar.
As you'll see, I'm currently working in a subdomain, which is being redirected to a directory under */public_html*, using cpanel. Might this be the cause?