My wordpress version is 2.8.2
I was using the default permalinks till now and decided to change and make them 'pretty'
I wanted this one
%year%/%monthnum%/%day%/%postname%/
Put it in the custom permalinks box and updated, it said the permalinks were updated successfully. I see the desired permalink url structure when I click on posts titles in my page but when I click them, it gives me 404 error.
I have wordpress installed in a directory called blog. My .htaccess file for root wordpress directory is:
# BEGIN AnyFont
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^images/(.*)/(.*)\.png$ /blog/wp-content/plugins/anyfont/img.php [L]
</IfModule>
# END AnyFont
# BEGIN AnyFont
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^images/(.*)/(.*)\.png$ /wp-content/plugins/anyfont/img.php [L]
</IfModule>
# END AnyFont
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blog/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
</IfModule>
# END WordPress
I tried using the common settings option with index.php http://bouncy-bubbles.net/index.php/2009/07/26/sample-post/
and it worked with that, the permalinks were working..
I do not want the index.php url though, I want something like this:
http://bouncy-bubbles.net/2009/07/26/sample-post/
Please tell me how to make these permalinks work. Help will be appreciated.
Thank you.