I have this .htaccess in a po_systems folder of my website
# Set up mod_rewrite
RewriteEngine on
RewriteRule ^build_system/([^/]+)/([^/]+)/?$ /po_systems/build_system.php?business_id=$1&system_id=$2
and when i visit the url
http://somesite.localhost/po_systems/build_system/61/65F92751
the get variables are not displaying....i changed the rule to
RewriteRule ^build_dfdsadsafas/([^/]+)/([^/]+)/?$ /po_systems/build_system.php?business_id=$1&system_id=$2
to verify it was getting there and i still dont get the get variables so i tries to add junk at the begining to verify the htaccess is working
sssRewriteRule ^build_system/([^/]+)/([^/]+)/?$ /po_systems/build_system.php?business_id=$1&system_id=$2
and I got this
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
So basically my question is why is this rule
RewriteRule ^build_system/([^/]+)/([^/]+)/?$ /po_systems/build_system.php?business_id=$1&system_id=$2
not working for catching this url
http://somesite.localhost/po_systems/build_system/61/65F92751d