Blog post not open 
Author: Nektarios K.
Visited 309,
Followers 2,
Shared 0
Hi there,
I was creating the first pack of the Blog post.
Everything is going well.
I uploaded the second pack of the blog post, and down bellow show me page 1 and 2.
Any post going to page 2 is not open.
Why does this happen?
Rgds,
Nek
Posted on the

Post a link to the blog so other users can see if they find an error.
For my blog there are Back 1 2 3 Next below and everything works, see
-----
Qual o link da publicação? (https:// ??????)
Author
Hi there,
Problem solved is a string error to bellow code in .htaccess for the ? removal from the link. this is the updated instructions and are working normally. pamsmaritime.com
RewriteEngine On
RewriteBase /
# 1. PREVENT LOOPS
RewriteCond %{ENV:REDIRECT_STATUS} 200
RewriteRule ^ - [L]
# 2. EXTERNAL REDIRECT
RewriteCond %{THE_REQUEST} \s/blog/(?:index\.php)?\?([^&\s]+)\s [NC]
RewriteRule ^ /blog/%1? [R=301,L]
# 3. INTERNAL MAPPING
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^blog/([^/]+)$ /blog/index.php?$1 [L,QSA]