I've read a few other instances of people having this problem. All of my pages load except the static front page. If I change the static front to any other page, they load also. My database and Dashboard all work great.
Home: http://makecollab.com
Blog: http://makecollab.com/factory
There is only an index.php file in my root, which has the following:
<?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('./wp-blog-header.php');
I feel its a problem with my htaccess file, I have it set to the basic:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
Permissions on the htaccess file are 644.
I have also checked wp-config.php and tried both with and without define('RELOCATE',true);
I have checked the database manually and the URL is correct, same as in dashboard settings.
Sigh, I'm not sure what else to try here. Thanks for any help.