• Anonymous User 14964395

    (@anonymized-14964395)


    The site was working fine with pagination. Today I have just added SSL to the domain and moved to HTTPS. Now HTTPS work fine but the pagination is stopped. Every paginated links are redirecting to 404 error page. I have updated my permalink too.

    Any idea how to solve this?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Achal Jain

    (@ibachal)

    Please update the permalinks. Go to backend Settings > Permalink and press the update button.

    Thread Starter Anonymous User 14964395

    (@anonymized-14964395)

    Yes, I updated the permalinks several times but it did not help. Here is my updated .htaccess file.

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    
    RewriteCond %{HTTPS} !=on
    RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
    
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    
    # END WordPress
    • This reply was modified 8 years ago by Anonymous User 14964395.
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Pagination stopped working after moving to HTTPS’ is closed to new replies.