Hi again, I've been doing some poking around on my site, and found a folder at http://www.meandmydiy.com/meandmydiy.com-redirect
it contains two files: blank.html and index.html
blank.html is an empty file.
index.html contains the following html:
<html>
<FRAMESET border='0' ROWS='*,1'>
<FRAME SRC='http://www.meandmydiy.com/index.php'>
<FRAME SRC='blank.html'>
</FRAMESET>
</html>
In the root directory is another file at: http://www.meandmydiy.com/index.php which contains:
<?php
/**
* Front to the WordPress application. This file doesn't do anything, but loads
* wp-blog-header.php which does and tells WordPress to load the theme.
*
* @package WordPress
*/
/**
* Tells WordPress to load the WordPress theme and output it.
*
* @var bool
*/
define('WP_USE_THEMES', true);
/** Loads the WordPress Environment and Template */
require('./blog/wp-blog-header.php');
My guess is that these files may have something to do with the issue I'm having. At this point, I realize this may be a Fatcow issue, and if I need to just redirect this back to them, please say so. I feel like you've already put a lot of time into this and it may not be a WP issue. On the other hand, if the solution is obvious to you, please let me know. I am comfortable with modifying, moving, creating files, etc., so I can do whatever's necessary. Thanks again for your help.
Debbie