Wordpress static home page dynamic posts page url rewrite
- by mahatmanich
Hi I have a wp installation with a static main page and posts page with the name articles.
My url rewirte string within wordpress is set to:
/%postname%
, and my htaccess file is set as follows:
RewriteEngine
On RewriteBase / RewriteCond
%{REQUEST_FILENAME} !-f RewriteCond
%{REQUEST_FILENAME} !-d RewriteRule .
/index.php [L]
When I browse to the articles page, my url rewrite looks like this:
example.com/articles/page/5
I would like to get a setting as follows:
example.com/articles/article/the-article-name
how would I achive this?