Paged Navigation doesn't work
I;ve got wordpress with clipper theme... when clicking on paginator (going to page two for example) I get page not found error:
and on the bottom there are pagination links...
In the Permalinks page I was on plain settings and got the same error. After reading certain blogs i went and used custom ones /%postname%/
Here is the screenshot
http://grab.by/N53q
so now it goes to
http://quikrdeals.us/page/2/ but still get the same error. I have checked my htaccess file and it says permalink structure updated and this is the code in the .htaccess file
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
Any help is appreciated.