Customize Permalink Structure -> 404
-
Just installed WordPress 2.0. Seems to work fine, but when I choose “Customize Permalink Structure” > either “Date and name based” or “Numeric” accessing a blog post results in a 404 message (rendered by WordPress).
This is the .htaccess file that WordPress generated:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blog/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php
</IfModule># END WordPress
As you can see, WordPress is installed in a “blog” subdirectory. If I remove or modify the .htaccess file I get Apache error pages, so clearly the file is having some effect…
Running on Apache 1.3.33 + PHP 4.4.1
I also tried using a wordpress-2006-01-01.tar.gz from somewhere, and patching functions-post.php + classes.php (as described in another post on this forum), but none of this seems to help.
- The topic ‘Customize Permalink Structure -> 404’ is closed to new replies.