<?php
// this script looks for and includes the detail .index.html file for the current folder
if (preg_match("/\/$/",$_SERVER['REQUEST_URI'])) {
  if (
file_exists('/home/rbkucera/rycera.com'.$_SERVER['REQUEST_URI'].'/.index.html')) {
    include(
'/home/rbkucera/rycera.com'.$_SERVER['REQUEST_URI'].'/.index.html');
  }
}