Tell me more ×
WordPress Answers is a question and answer site for WordPress developers and administrators. It's 100% free, no registration required.

Hallo,

I cannot go to my individual blog posts (or any other pages beyond my main page) because it always takes me to the RSS feed page instead. I think it is a problem with my .htaccess file, so here it is:

# 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

I'm using a subdomain and the address is located at http://www.das-tagebuch.andontie.net If you try and click "read more", it should just take you to the RSS feed page. If it doesn't the first time, it should the second time. It does it for me all the time now and only emptying Firefox's cache fixes it temporarily.

Any help appreciated, thanks!

share|improve this question

closed as too localized by toscho Jun 11 '12 at 17:56

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

Strange. I copied one of the links and watched for a redirect, but it didn't happen. I also noted that the /wp-admin link worked correctly. My gut says there may be a plugin involved with this. You might also want to check how you have permalinks set up.

share|improve this answer
Did you try it more than once? Because sometimes it doesn't do it the first time. And yea, I can login and everything still. I dunno about the plugins. I have two blogs with this same web host and they both do the same RSS redirect thing and they each have different plugins. I changed the permalink rules to numeric, but it still does it. – user4556 Apr 11 '11 at 11:57
@Kalinda: "two blogs ... same redirect" -- that is an interesting bit of information. I don't think this is a .htaccess problem. I suggest renaming your plugins directory to something like /wp-content/xplugins/ and see if the problem goes away (or at least changes nature). If so, create a new plugins/ directory and move your plugins to it one at a time, testing after each move. Good Luck! – Peter Rowell Apr 11 '11 at 16:54
Hello! I figured it out. In order to make it work, I had to change the permalink settings to default. None of the others work, I guess because my webhost doesn't have mod_rewrite enabled or something. – user4556 Apr 13 '11 at 14:18