I have and index.php page in my root that simple directs to what I would consider my homepage,
like so:
<?
Header( "HTTP/1.1 301 Moved Permanently" );
Header( "Location: /lake-district-cottages/" );
?>
is it best to just remove the index page and set my true index in my htaccess or is it required that I have a file called index?