mod_rewrite is enabled by default on our UNIX platform. You can use it within .htaccess by using syntax similiar to the following
CODE
RewriteEngine on
RewriteRule ^index.htm$ /newlocation.html
The first part is the page you are rewriting from: Example(index.htm) the ending is where the rewrite will go(newlocation.html).