我有一个这种格式的地图文件
233 Alabama/Phenix-City/Ridgebrook
237 Alabama/Ft.-Mitchell/Riverside-Estates
我有以下 .htaccess 脚本。当有问题的页面被点击时,我收到 500 内部服务器错误。
RewriteEngine On
RewriteBase /
Options +FollowSymLinks
RewriteMap examplemap txt:/var/www/html/site.com/key_pair.txt
RewriteRule community.php?(.*) ${examplemap:$1} [R]
当我传递以下 URL 时,我希望它被重写如下。
http://example.com/community.php?comm_id=233
应该这样改写
http://example.com/Alabama/Phenix-City/Ridgebrook
有什么想法吗?