Permalinks set to Postname not working-redirects to homepage
Permalinks set to postname is not working. It redirects back to homepage. We tried deactivating each and all the plugins but it still no use. Even the .htaccess have the right settings: The site is private *subdomain.
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /subdomain/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /subdomain/index.php [L]
</IfModule>
But when set to default, the permalinks worked. Please help fix this issue. Thank you.