Hi I have a Wordpress installation with a static main page and posts page with the name articles.
My custom permalink string within Wordpress is set to /%postname%
and my htaccess file is set as follows:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ./index.php [L]
</IfModule>
When I browse to the articles page, my url rewrite looks like this:
example.com/articles/page/5
EDIT ----- The articles page is the one that I use to browse all articles with a previous article and a next article link.
Thus next article would give me example.com/articles/page/6
and previous article would bring me to example.com/articles/page/4
however I would like the "page" part to change to article and the "number" to the actual particle name. EDIT ------ END
I would like to get a setting as follows:
example.com/articles/article/the-article-name
how would I achive this?