I installed gsBlog on my website, and while fancypants url generation works for pages, it's giving me a 404 on blog posts. Same issue with clicking on tags as well.
If it was .htaccess then it wouldn't work for either page type, so I don't believe that's the issue. But stranger things have happened. Here's what my file contains:
Did I miss a configuration in the admin?
If it was .htaccess then it wouldn't work for either page type, so I don't believe that's the issue. But stranger things have happened. Here's what my file contains:
Code:
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule /?([A-Za-z0-9_-]+)/?$ index.php?id=$1 [QSA,L]
Did I miss a configuration in the admin?