Hoping this is quick and simple...
Recently had a splash page built, my intention is to have general traffic from http://www.domain.com/ redirected to http://www.domain.com/splash.php; so that all subdirectories will not redirect and they will act as normal.
Modified the root level .htaccess with:
directoryindex splash.php index.php
but that effect carried to all subdirs. How do I limit this to just top level?
I also have tried a redirect like this one:
RedirectMatch 301 ^/$ http://www.domain.com/splash.php
But seems to have similar effect as the directoryindex did, when tabbing through certain modules they'll redirect to the splash.php and things get ugly from there.
What's the appropriate way to redirect top level to splash.php while not being penalized by search crawlers? I want the rest of my site open to guest traffic when they click through links, so using a ifMember in the code isn't really ideal.
Thanks in advance!