want to beautify an url from:
https://abuena.net/art.php?id=51
to
https://abuena.net/art/51
here is my try, without success, simply is ignored
RewriteEngine on
RewriteRule ^([a-zA-Z0-9_]+)$ /$1/ [R]
RewriteRule ^([a-zA-Z0-9_]+)/$ /art.php?id=$1
My hosting provider says that my server is not Apache but LSWS - LiteSpeed WebServer - and that is probably problem in my syntax.
Any help?