Hello,
I am trying to make my blog appear in a non-root folder, as explained at http://codex.wordpress.org/Pages#Making_your_blog_appear_in_a_non-root_folder
The specifics:
I would like the home page to be: http://williamwolff.org
I would like the blog to appear at: http://williamwolff.org/composingspaces/
The latter URL is the name of my blog and others know that URL so I would like it to stay that way.
As per the instructions, I created the blog.php, but called it composingspaces.php and changed the items in the file to reflect that change:
<?php
/*
Template Name: Composingspaces
*/
// Which page of the blog are we on?
$paged = get_query_var('paged');
query_posts('cat=-0&paged='.$paged);
// make posts print only the first part with a link to rest of the post.
global $more;
$more = 0;
//load index to show composingspaces
load_template(TEMPLATEPATH . '/index.php');
?>
Because I am using 2.3.2, I did not create the home.php file. Rather, I created a blank page and set it to home with the default template (which should not look so poor, I might add). When I try to go to http://williamwolff.org/composingspaces/ I see this:
Index of /composingspaces
* Parent Directory
* wp-content/
* wp-includes/
Any and all suggestions are greatly appreciated.
BW