Hi-
Hopefully this will be a stupid question and it will get answered quickly - I'm having trouble getting permalinks working on a site I integrated WP into.
The site:
http://www.step2studio.com/roguemoon/roguemoon.php
This is the permalink WP spits out in the settings page. It 404s:
http://step2studio.com/roguemoon/?p=20
This permalink works, but its to a WP site I havent set up:
http://step2studio.com/roguemoon/wordpress/?p=20
The code I have in rogemoon.php:
<?php
/* Short and sweet */
define('WP_USE_THEMES', false);
require('./wordpress/wp-blog-header.php');
?>
...
...
<!--Get the last 3 posts.-->
<?php query_posts('showposts=3'); ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post_window">
" rel="bookmark"><?php the_title(); ?> - <small><?php the_time('F jS, Y') ?> by <?php the_author() ?> </small>
<?php the_content(); ?>
</div>
<?php endwhile; ?>
How do I get "http://step2studio.com/roguemoon/?p=20" to work correctly?
Thanks in advance,
Max