I would like to rewrite /anything.anyextension
into /?post=anything
.
eg:
/this-is-a-post.php
into/?post=this-is-a-post
or/this-is-a-post.html
into/?post=this-is-a-post
or 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.