I have moved from other hosting to bluehost. The htaccess files works fine on localhost and my old website. However, it doesn't work on bluehost, what's wrong?
.htaccess:
-----------------------------------------------------
IndexIgnore *
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ album.php?u_id=$1 [L]
-----------------------------------------------------
action:
http://www.example.com/something >>> http://www.example.com/album.php?u_id=something


