Your base url is pointing to
http://www.natoyaebony.com/online/category/thedates/
but it seems you have installed your wordpress in online folder
and your base url should be
http://www.natoyaebony.com/online/
You need to take out “category/thedates/” part.
Check your permalink and see how it’s been set up.
If you are not sure, can you post the permalink here
so that we can see what would be the issue?
Thank you – that’s the way I was thinking too (glad to know I’m not going mad).
Trouble is, I can’t get into the Dashboard.
Can I get to the permalink setting via the database?
Really appreciate your help
Did you check .htaccess?
If you can post it here, I will take a look.
Thank you, dear Geek
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /online/
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /online/index.php [L]
</IfModule>
# END WordPress
Just wanted to post how I fixed this in case others have a similar issue.
The problem was caused by the permalinks being set wrong – just a missing / but that threw everything.
So I went into the database and corrected the siteurl in the wp_options table.
And lo – one website restored, into the Dashboard and set the permalinks to something that works.
Huge thanks to geeksfolder for guidance.