mod rewrite - Mod_rewrite Help -


this have, not working.

rewriterule ^location/([a-za-z0-9_-]+)/reviews$ location.php?purl=$1&page=reviews [l] rewriterule ^location/([a-za-z0-9_-]+)/reviews/$ location.php?purl=$1&page=reviews [l] 

can show me doing wrong?

http://www.example.com/this-location-1234/reviews/ http://www.example.com/location.php?purl=this-location-1234&page=review

you should combine 2 (nearly identical) rules, , make sure have rewriteengine on , rule being run (either .htaccess getting picked up, or have in active vhost definition).

rewriteengine on rewriterule ^location/([a-za-z0-9_-]+)/reviews/?$ location.php?purl=$1&page=reviews [l] 

Comments

Popular posts from this blog

java - SNMP4J General Variable Binding Error -

windows - Python Service Installation - "Could not find PythonClass entry" -

Determine if a XmlNode is empty or null in C#? -