WP blog on own site shows Page Not Found
-
Yesterday I installed WP into my own site and after following the guide it was working fine, this morning it isn’t. It says page not found. Can anyone help?
https://www.baythemoon.com/blog
The root index.php 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’);
?>The .htaccess contains:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blog/
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
</IfModule># END WordPress
- The topic ‘WP blog on own site shows Page Not Found’ is closed to new replies.