I have the standard wordpress permalinks set to
/%postname%/
which generates this in htaccess
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /subdomain/
RewriteRule ^index\\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /subdomain/index.php [L]
</IfModule>
I also have 4 dynamic pages which are currently
[noparse]http://www.domain.com/subdomain/wordpress-slug/?var=VARIABLE[/noparse]
the site owner doesn’t like this, he wants to see
[noparse]http://www.domain.com/subdomain/wordpress-slug-VARIABLE/[/noparse]
in the address bar.
My question is, how do I convert [noparse]http://www.domain.com/subdomain/wordpress-slug-VARIABLE/[/noparse] back to [noparse]http://www.domain.com/subdomain/wordpress-slug/?var=VARIABLE[/noparse] so that wordpress knows what to do next?
TIA