I recently decided to use custom permalinks
using this structure: /%postname%/
I put this code in the .htaccess file which
is located in the blog folder:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blog/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php
</IfModule>
Everything is working fine apart from one strange
problem which only effects a few of my posts.
The problem occurs when I use either the word
"blog" or "blogging" in the slug link.
If I use either of these words in the slug link it
displays fine on the main page but is not found on
the single page for the post.
Its strange because if I delete the word "blog" or
"blogging" from the slug link the problem is fixed
and everything works fine for the single post page.
I need to use these words in the slug link for a
few posts otherwise I would just rename it.
Any help and ideas to solve this problem are welcome.
Thanks,
Simon