Have a strange error that has recently popped up that I am struggling to resolve.
I have a wordpress install using the sub domain method:
www.example.com/wordpress
in my root directory I have .htaccess:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
And my index file:
<?php
define('WP_USE_THEMES', true);
/** Loads the WordPress Environment and Template */
require( dirname( __FILE__ ) . '/wordpress/wp-blog-header.php' );
home is set to: www.example.com url is set to: www.example.com/wordpress
When I try and access the admin at: www.example.com/wordpress/wp-admin I get the error: Sorry, but the page you are looking for could not be found.
This is not a new install of Wordpress and this issue only recently happened after an auto update.
How do I go about bug testing this?