Can somebody make sure i wrote this correctly? (mod_rewrite)
Posted: Tue Oct 24, 2006 4:08 pm
I need to rewrite index.htm and index.html to index.php... and nothing else... this seems to work, but I just want to make sure there won't be any unexpected results...
Code: Select all
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^index.htm|index.html$ index.php
</IfModule>