Forum Moderators: phranque
Rewritecond %{REQUEST_URI} !\.[^/]+$
Rewriterule (.+) $1.html [L]
To add .html to the end of a request so that if you don't put .html you won't get a 404. Is there a way of having a more targeted one, so that every request for ".../blog/something" automatically has .php added instead of html?
I'm really not sure how to do it.