Using home.html as splash page
-
I am attempting to use home.html as a splash page for my install. Currently I am able to get the splash page to show, but when attempting to link to index.php, it loops back to the home.html page.
Here is my current .htaccess file:
DirectoryIndex home.html # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^home\.html$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress
Any help is greatly appreciated.
- The topic ‘Using home.html as splash page’ is closed to new replies.