My WP site has a weird problem. From time to time certain pages are redirected back to the homepage.
For example, I use the WP Link DIR plugin. The shortcode was added to the resources page. But when clicking on http://www.mydomain.com/resources it redirects back to the homepage.
My permalink is %postname% and category base is set to category
My .htaccess reads as follows:
# 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
Any ideas on what's causing the problem?