Quote:
|
Originally Posted by Lycanthrope
Just replace index.html w/ index.php and add this to .htaccess
RewriteBase /
RewriteRule ^index\.html$ index.php
|
That's usually what I'd do.
Or you could use a 301 redirect:
Code:
redirect 301 /index.html http[colon]//www[dot]domain[dot]com/index.php
you'll need to replace [colon] and [dot] obviously. They're just there because I have less than 30 posts.