Sorry if this is an obvious question - but I've been searching online for ages, without getting an answer to it.
I've got a simple bit of mod rewrite code in my htaccess file, which removes the file extension from the URL.
domain.com/filename.html
becomes ...
domain.com/filename
This all works great if you directly type in the file name without the extension - the page displays with the extensionless file name in the address bar
BUT - if you follow a link to the page on my website, the extension is still displayed - obviously, this is because the file name extension is present in the HTML source code of the link.
Clearly, one solution to this is to remove all the extensions from my links - easy enough to do, but that means that all the links are broken when I am viewing the site locally in Dreamweaver preview mode.
So my question is - do I HAVE to remove the extension from all my links, or is there a mod rewrite code that will display an extensionless URL even if the extension is left in the links?