Ok. I updated my blog to WordPress 2.0.
Now any manually created folders in the installation are picked up by the blog's engine and i get an error page. How to prevent that?
For eg: http://sushubh.net/boo/index.php is the refer page... And WP shows it as a missing post/page.
Does your .htaccess file look like this?:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php
</IfModule>
# END WordPress
The two flags, -f and -d, are used there to keep the rewrite rules from applying to actual files or directories, respectively. So if you do have that .htaccess, is it possible that your directory and file are actually only symbolic links?
well i am using the default permalink structures of course.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php
</IfModule>
and the folders i am talking about are real existing folders on the FTP. i converted the folder boo to a subdomain and now http://boo.sushubh.net works fine. so something is messy around here of course... :|
umm... this page's rss feed seem to have issues:
http://wordpress.org/support/rss/topic/54640