I'm having a problem with clean urls, but only after moving my blog from from a sub-directory. I've read a dozen helpful threads, but my problem seems a little bit different.
At first, WP 2.6.1 was installed in .org/wordpress/ and was viewable at .org/wordpress/. Everything worked great. The clean permalinks worked fine.
I'm done with development and now want the blog visible at the domain's root. I used the relevant directions on giving wp its own directory.
Now, everything works if I use default permalinks. But I can't switch to month and name as I had it before. I've chmod .htaccess and confirmed that it's updating properly. The links to Pages and Posts appear proper, but lead to a not found page (hosting, not wp).
In the directions linked above, it's not clear if you I should leave index.php and .htaccess in /wordpress/ when I update and copy them in the root. Should I leave or delete them there?
My friend's crappy host godaddy say they don't allow mod_rewrite. But everything worked in the sub-directory just fine. So I don't think that's the problem. But maybe it is.
I do have access to php.ini, so I'm going to try to update cgi.fix_pathinfo = 0. But we're on Linux, so I'm not sure if this is relevant.
Any suggestions??
.htaccess contains:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress