I know this topic has been discussed and beaten to death... But mine is so simple, perhaps I'm over-complicating it? I've written my share of .htaccess files, but it's always been for dynamic content. pagename.php?id=1 or whatever... But in this case, I have a 10 page static website. No CMS, no Database... Nice and simple, flat php files. PHO is only used for some include files. It's practically HTML.
However, I'd like to remove the extension off the links so that www.example.com/about.php becomes www.example.com/about
The tricky part I'm having is the existing URL's in the code
<a href="http://www.example.com/about.php">
I'd like to see re-written when the user rolls over and clicks it without the need to edit the website or change the filenames. While a seemingly simple task, I can't seem to get it to work? Any ideas what the rewrite rule would be?