• I’m trying to use the pagination with custom permalinks for my wordpress page but it doesn’t work with the page navigation it bounces back to the first page everytime.

    Here are my settings:

    .htaccess

    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /www/
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /www/index.php [L]
    </IfModule>

    Permlinks
    /%year%/%monthnum%/%day%/%postname%/

    When I try to access a page it says:

    Failed to load source for: www/showcase/showcase/page/2/ (301 Moved Permanently)

    And then it goes to: www/showcase/showcase/

    How do I fix this bug?

    Best
    C

  • The topic ‘Pagination and custom permalinks doesn't work’ is closed to new replies.