<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond   %{REQUEST_FILENAME}  !-d
    RewriteCond   %{REQUEST_FILENAME}  !-f
    RewriteRule   ^([0-9]+)$ index.php?id=$1 [QSA,L]
    RewriteRule   ^([0-9]+)/rss/?$ rss.php?id=$1 [QSA,L]
    RewriteRule   ^([0-9]+)/([a-z]+)(\.php)?$ $2.php?id=$1 [QSA,L]
</IfModule>
