问php 5.3 .htaccess不起作用,但它适用于PHP 5.5(其他主机服务)

Dear Mr Expert Programmer,

I have a little problem with rewrite rule in a xxx hosting provider. I've asked the administrator about the configuration of their server configuration and the mod_rewrite is on. This is a little of my .htaccess file

Options +FollowSymLinks -MultiViews
RewriteEngine On

RewriteRule ^home.html$ index.php [L]
RewriteRule ^index.html$ index.php [L]
RewriteRule ^tentang_kami.html$ tentang_kami.php [L]
RewriteRule ^blog.html$ blog.php [L]
RewriteRule ^semua_berita.html$ berita.php?act=default [L]

The result was all of those written link is automatically redirected to index.php

in example mydomain.com/semua_berita.html should be goes to berita.php?act=default but the result is redirected to index.php

Is it because of the differences between php server or some other reason? Because instead of redirect to 404 page it always went to index.php

thanks b4