I have a map file in this format
233 Alabama/Phenix-City/Ridgebrook 237 Alabama/Ft.-Mitchell/Riverside-Estates
I have the following .htaccess script. I get a 500 Internal Server Error when the page in question hits.
RewriteEngine On RewriteBase / Options +FollowSymLinks RewriteMap examplemap txt:/var/www/html/site.com/key_pair.txt RewriteRule community.php?(.*) ${examplemap:$1} [R]
When I pass the following URL, I want it to be rewritten as follows.
http:
should be rewritten as follows
http:
Any thoughts?
source share