When using .htaccess to redefine the URLs for a site, there are two clear options:
- Provide no extension, as StackOverflow has done with URLs like
http://stackoverflow.com/questions/ask
- Provide the extension of .html, regardless of the underlying technology, so something like
http://stackoverflow.com/questions/ask.html
Are there any specific advantages to using one approach over the other?
Edit: Here is the article that made me consider using .html
to fake a static implementation.