Is there a way to remove splash.php (included in a TMD template) in a manner that sends site visitors (members AND nonmembers) to the page that the shipped Dolphin version normally sends visitors to? e.g. www.website.com instead of www.website.com/splash.php?
already tried the following to no avail:
1. 301 redirect to index.php
2. renaming index.php to splash.php
3. adding the following entry to HTACCESS: RewriteRule ^/{0,1}$ splash.php? [QSA,L]
4. editing line 120 of design.inc.php as follows:
/* MODIFIED Deanos Redirect Guests to splash.php - Code Add - Start */
/* NOTE: If this is a dolphin page that uses the dolphin template system then this */
/* may cause a loop. */
if ($_page['header'] != 'Join') {
header('Location: ' . BX_DOL_URL_ROOT . 'index.php');
}
/* MODIFIED Deanos Redirect Guests to splash.php - Code Add - End */