OK thank you – I can live without that.
Are you able to help with my other query? About providing feedback after each question has been answered?
This happened to me too. When I contacted my ISP they fixed it like this:
1. Create a new top-level text file and call it .htaccess
2. Double-click the new file to open it.
3. Paste in the following code:
# 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
4. Save and close.
That’s it. All my links were fixed. I had the same problem on a different site, duplicated the .htaccess file in there too, and it all worked.