I am very new to Wordpress but was given a task to retrieve WP driven website.
At first I worked on localhost and managed to fix it - the only thing that did not work was the custom permalink (set to 'postname'). The site only works good locally if permalinks are set to 'default'.
Anyway, I decided to put the site to test on server. I only managed to view main site - and only when permalinks are set back to 'postname'. All other sites redirect me to http://0.0.0.0/postname and give me 'ERR_ADDRESS_INVALID'... However when I manually enter e.g. http://mysite/?page_id=1 it appears just ok... It made me really confused.
WP-admin works ok.
My .htaccess file is standard:
`<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>`
Have you got any suggestions?