然而我跟着这些配置操作并没啥卵用 ,,希望对你们有用 假设配置错了会出现Internal Server Error的bug 把.htaccess该回来即可

RewriteMap MapName MapType:MapSource

  • MapName:命名给 RewriteRule 调用
  • MapType:map文件的类型有txt rnd
  • MapSource:map文件路径

txt格式

  • ${MapName:LookupKey|DefaultValue}
  • 实战如下

打开httpd.conf文件 全局搜索troot

在Directory节点外 添加一句

RewriteMap pages txt:${INSTALL_DIR}/map.txt

效果如下 

DocumentRoot "${INSTALL_DIR}/www"
RewriteMap pages txt:${INSTALL_DIR}/map.txt

<Directory "${INSTALL_DIR}/www/">

可以在httpd.conf中  找到这个路径 ctrl+f搜INSTALL_DIR也可以

Define INSTALL_DIR F:/installIng/dev/wampserver
Define APACHE_DIR ${INSTALL_DIR}/bin/apache/apache${VERSION_APACHE}

创建map.txt 在目录 F:\installIng\dev\wampserver\下

test1 pagetest1
test2 pagetest2

重启apache tips:修改map.txt无需重启apache  修改主配置文件httpd.conf每次都需要

修改.htaccess

RewriteEngine on
RewriteRude ^(.*)\.html ${pages:$1}

效果和rnd 差不多 请往下看~~

rnd 格式

  • 随机映射 RewriteMap servers rnd:C:/wamp/rnd.txt
  • URL1 S1|S2|S#
  • URL2 S4|S5

规则

RewriteRule "^/(.*\.(png|gif|jgp))"

"http://${servers:URL1}/$1"

实战

修改主配置文件httpd.conf

新增

RewriteMap dirs rnd:F:/installIng/dev/wampserver/dirs.txt
DocumentRoot "${INSTALL_DIR}/www"
RewriteMap dirs rnd:F:/installIng/dev/wampserver/dirs.txt
RewriteMap pages txt:F:/installIng/dev/wampserver/map.txt

<Directory "${INSTALL_DIR}/www/">

新建该文件并编辑其内容

URL1 s1|s2|s3|s4
URL2 w1|w2|w3|w4

修改.htaccess文件

RewriteEngine on
RewriteRude ^(.*)\.html /${dirs:$1|root}/$1.php

当访问 127.0.0.1/a.html  会跳转到127.0.0.1/root/a.php

当访问 127.0.0.1/URL1.html  会跳转到127.0.0.1/s2/a.php   s2这个值可以是s1-s4中任意的一个

当访问 127.0.0.1/URL2.html  会跳转到127.0.0.1/w2/a.php   s2这个值可以是w1-w4中任意的一个

然而我跟着这些配置操作并没啥卵用 ,,希望对你们有用 假设配置错了会出现Internal Server Error的bug 把.htaccess该回来即可

01-30 14:09