I'm trying to keep my old HTML site live while I develop a new WP site on the same domain.
I installed WP on my godaddy hosting account this morning thinking that the current html site would remain live while I develop the WP site in the same directory. I've had this work on other hosts, but apparently godaddy's priority is:
1. index.php
2. index.html
I came across this thread http://wordpress.org/support/topic/232763?replies=16#post-1333760 which explains how to disable the canonical URL redirect, and followed the steps exactly, but no luck.
anyway to keep both sites live?
i've also tried rewriting htaccess as below, but no luck there either
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.html [L]
</IfModule>