php - Reading $_GET after URL rewrite -
I do not know what URL to me I'm actually passing it correctly
www.mydomain.com/openings.html?jobName=accounting-manager
I should be URL
www.mydomain.com/ openings / accounting-manager.html
so, I added .htaccess
RewriteRule ^ opening / ([^ /] *). $ Html /openings.html? \ Jobfilename = $ 1 [L]
then serves as the URL intention now, I want $ _GET [ 'Jobnam'] reading this page so I print it on page Can do But the $ _GET variable is not present after the URL is rewritten. Is there any way to enter? Do I need to change the rewrite or should I do it any other way?
Thank you.
This is most likely because Maltivijh is enabled. Place it at the top of the .htaccess file.
Options - Multi Views
See also the flag for your rule.
Comments
Post a Comment