I’m using month and name permalink structure.
.htaccess prior to loading is:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
After loading the plugin it becomes:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteRule ^wp-admin$ %{REQUEST_URI}/ [R=301,L]
RewriteRule ^wp-admin/(.*?)$ /wp-admin/$1?%{QUERY_STRING} [QSA,L]
RewriteRule ^login/?$ /wp-login.php [QSA,L]
RewriteRule ^register/?$ /wp-login.php?action=register [QSA,L]
RewriteRule ^forgot/?$ /wp-login.php?action=lostpassword [QSA,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress