I want to put up a .html landing page in a site. What I want is when users go to www.mydomain.com, they'll be redirected to the html landing page (I have named it index.html). Then the can click on a link directing to index.phpto view the main site at www.mydomain.com/index.php.
Been trying to play around with the .htaccess with no success so far (maybe my rewrite rules are wrong). Here's the content of the .htaccess file:
# Use PHP5 Single php.ini as default
AddHandler application/x-httpd-php5s .htm .html .php
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ /index.htm [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress

