I have a similar problem as Japhy. WP 2.01, I have index.php and .htaccess in root, and the rest in subfolder. Everything works like a charm, mostly. I’m a total newbie at this with enough skills to be dangerous. I am methodical though and have only destroyed my install once.
Updating permalinks seems to work, i.e. I can enter the new permalink address without the /index.php/ and it works fine. But WP does not display the permalink properly. Post titles have the permalink structure with /index.php/ included. Tooltips show “Permalink” and address displayed in status bar shows the nice permalink with /index.php/. Clicking the link in fact works as expected, nice link, but again with /index.php/.
When I Update Permalink Structure, I’m told that I need to edit .htaccess. Also, I’m told that .htaccess is not writable so I have to paste this:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /index.php/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php/index.php [L]
</IfModule>
I’ve looked everywhere and this looks odd to me. My .htaccess file is not accessable by WP, I manually created the file and uploaded it. I’ve tried several standard recommended variations of the above rewrite rule.
I’ve tried all variations of 644, 666, 744, 777, etc. WP admin cannot write to the .htaccess or see it under Mangage/Files. I get the “Oops, no such file exists…” message. I don’t want to manually edit .htacess if WP can do this for me, but I can’t make it work. But I will if I have to.
I’ve also tried an edited version of vars.php with the “Apache=1” thing; no apparent effect either way.
I’m hosted on 1and1, basic linux, which claims to support mod_rewrite, but for some reason their customer support would not definitively confirms that. Instead, they sent me an email which contained the available commands for the mod server. No explanation, no “dear sir”, nothing else. Wierd. PHP info test does not reveal any Apache module, Server API says “CGI” not Apache. This email was rec’d during the call, and the only thing the guy would say was “we are sending you an email, “you’ll see””. Funny, my further query has resulted in silence, but I did receive a customer service survey! Ha.
Any suggestions would be great, this one single feature is driving me insane.