Thanks, I’ve tried add the following:
RewriteRule ^card/(.*)/$ /index.php?page_id=215&card=$1 [L]
To my htaccess and it breaks the site.
Htaccess below:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^card/(.*)/$ /index.php?page_id=215&card=$1 [L]
RewriteRule . /index.php [L]
</IfModule>
I just want to rewrite mysite.com/card/card-one/ etc, to my specific WordPress page (#215).
Hope that makes sense.