Topic: Could you use url rewriting on tux?

I have tested the following .htaccess on my localhost and it works there. However when I try it on tux site I receive error 500 (Internal Server Error). What am I doing wrong?

Here is my .htaccess code:

RewriteEngine On
RewriteRule ^([a-zA-Z0-9_-]+)$ index.php?service=$1
RewriteRule ^([a-zA-Z0-9_-]+)/$ index.php?service=$1

Re: Could you use url rewriting on tux?

Hello,

Maybe a missing RewriteBase, as mentionned on http://faq.tuxfamily.org/WebArea/En#Tips_and_tricks ?