My guess is that you haven’t properly setup your .htaccess for your custom permalinks. Try changing these back to default and see if it works then.
If that solves the problem, make sure your .htaccess is writable when you change it back to custom permalinks or update it manually.
Many thanks Rubberband, changing back to default certainly worked.
I have uploaded a .htaccess file to my worpdress root folder and input the following code;
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
It hasn’t worked, I assuming though that’s because I’m on a Windows server need to modify the IIS.. problem here is I don’t have admin access to IIS (IIS 6).
There are other work arounds that I could use but these require configuration of my 404 Custom Error page, again, I don’t have access to this through my host.
It did work when I put index.php/ at the start of your custom permalink structure.. this isn’t ideal though, I don’t want the index.php/ in the URL.
Any ideas?
Thanks again, your help is much appreciated!
Lee