RewriteMap not working in mod-rewrite

安稳与你 提交于 2019-12-10 17:02:58

问题


I have been trying to do simple maping with RewriteMap directive in my htaccess, but for some reason i am getting error 500 everytime. my syntax is .. Options +FollowSymLinks

RewriteEngine on
RewriteBase /
RewriteMap name2id txt:nklist.txt
RewriteRule ^/name/(.*) /name_list_view.php?kid=${name2id:$1|NOTFOUND}

in nklist.txt :

1 David
2 Mark
3 Simon

the nklist.txt file is on the root of my website , same place where the htaccess is . As far as my debugging tells me that htaccess is not able to find the nklist.txt file, but any help would be thankful.


回答1:


From your description, you're attempting to define a RewriteMap in a per-directory context via your .htaccess file, but this isn't allowed. The RewriteMap can only be defined in a per-server context, either in the main server configuration or in a virtual server section.

When you make requests to the server and the .htaccess file is parsed, it encounters the RewriteMap directive and issues an alert, which results in an 500 error being thrown. You'll likely see an entry in your error_log that states "RewriteMap not allowed here".



来源:https://stackoverflow.com/questions/3306070/rewritemap-not-working-in-mod-rewrite

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!