I don't know if I am approaching this correctly. Basically I have a URL
www.mydomain.com/openings.html?jobName=accounting-manager
I want the URL to be
www.mydomain.com/openings/accounting-manager.html
So, I added this to the .htaccess
RewriteRule ^openings/([^/]*).html$ /openings.html?\ jobfilename=$1 [L]
So the URL works as intended. Now, I want to read the $_GET['jobName'] on this page so that I can get print it on the page. But after the URL rewrite the $_GET variable is not present. Is there a way to accessing? Do I need to change the rewrite or should I approach this in a different way?
Thanks.