Hey,
My blogs index page is just showing an blank index page instead of showing all the posts etc - http://www.youngmoneyhq.com
I don't understand why it is doing this, but when you go to a page or single post etc, it works. For example: http://www.youngmoneyhq.com/2009/07/13/drake-something-x-slow-it-down-x-juice-x-do-it-now-x-stunt-on-you/
In my general settings, this is what I am currently using:
WordPress address (URL): http://www.youngmoneyhq.com/news
Blog address (URL): http://www.youngmoneyhq.com
Also, this is what I have in my index.php:
<?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('./news/wp-blog-header.php');
?>
and my .htaccess:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
So does anyone know what the problem is and how I can fix it?
Thanks, appreciate it :)