Trying to rewrite links that look like this:
/content/about-me
...to this:
/content/about-me.html
It's necessary for what I'm working on. I keep getting internal server errors with this htaccess rule:
RewriteRule ^content/(.*) /content/$1.html [NC,L]
Any idea what I'm doing wrong? Loads of examples on the net, but can't quite get it right.