I would like to rewrite /anything.anyextension into /?post=anything.
eg:
/this-is-a-post.phpinto/?post=this-is-a-postor/this-is-a-post.htmlinto/?post=this-is-a-postor even/this-is-a-post/into/?post=this-is-a-post
I tried
RewriteRule ^([a-zA-Z0-9_-]+)(|/|\.[a-z]{3,4})$ ?$1 [L]
but it doesn't work.
Any help appreciated.