Please Help
The dynamic url generated will be
/project-management/pmp-certification-classroom-training.php?loc=xyz&id=12345
I need to redirect the url in htaccess file and it has to generate the the url like
/project-management/pmp-certification-classroom-training-xyz/12345
try this
<IfModule mod_rewrite.c> RewriteEngine on RewriteRule ^project-management/pmp-certification-classroom-training/([a-zA-Z0-9-_]+)/([0-9]+)$ pmp-certification-classroom-training.php?loc=$1&project_id=$2 [L, QSA] </IfModule>