Problem with RewriteRule in .htaccess
Hi, i'm creating some rules to make SEO Friendly URL's, my original URL is something like:
...directorio/?filter=all&type=medicos&location=&cs_directory_search_location=Yes&search_view=&goe_location_enable=No&cs_loc_max_input=5&cs_loc_incr_step=1&submit=&action=cs_directory_map_search
and i want to make it look like:
...directorio/medicos
in that case. I created the rule and it works fine on my localhost, but it's not working on the live site, im getting 404 Error. This is the rule I created, hope you can help me find why it's not working.
RewriteRule ^directorio/([a-z]+)/?$ index.php/directorio/?filter=all&type=$1&location=&cs_directory_search_location=Yes&search_view=&goe_location_enable=No&cs_loc_max_input=5&cs_loc_incr_step=1&submit=&action=cs_directory_map_search [L]
Thanks in advace for your help.
...directorio/?filter=all&type=medicos&location=&cs_directory_search_location=Yes&search_view=&goe_location_enable=No&cs_loc_max_input=5&cs_loc_incr_step=1&submit=&action=cs_directory_map_search
and i want to make it look like:
...directorio/medicos
in that case. I created the rule and it works fine on my localhost, but it's not working on the live site, im getting 404 Error. This is the rule I created, hope you can help me find why it's not working.
RewriteRule ^directorio/([a-z]+)/?$ index.php/directorio/?filter=all&type=$1&location=&cs_directory_search_location=Yes&search_view=&goe_location_enable=No&cs_loc_max_input=5&cs_loc_incr_step=1&submit=&action=cs_directory_map_search [L]
Thanks in advace for your help.