(六)RewriteCond 调用服务器变量 TestString使用说明%1-9
原创
©著作权归作者所有:来自51CTO博客作者mp624183768的原创作品,请联系作者获取转载授权,否则将追究法律责任
TestString 使用说明 %{NAME_OF_VARIABLE}
服务器变量引用
RewriteCond %{HTTM_HOST} "127.0.0.1"
用法 编写规则
RewriteEngine on
RewriteCond %{HTTP_HOST} "127.0.0.1"
RewriteRule ^(.*).htm http://localhost/$1.html [R]
当访问127.0.0.1/testaa.htm时候 地址栏会变成http://localhost/taest.html
TestString 使用说明 %1-9
%1-9 RewriteCond条件中最后符合的条件中的分组成分
RewriteEngine on
RewriteCond %{HTTP_HOST} "127.0.0.(.*)"
RewriteCond %1 "2"
RewriteRule ^(.*).htm http://localhost/$1.html [R]
当访问127.0.0.1/testaa.htm时候 地址栏不会变成http://localhost/taest.html
RewriteEngine on
RewriteCond %{HTTP_HOST} "127.0.0.(.*)"
RewriteCond %1 "1"
RewriteRule ^(.*).htm http://localhost/$1.html [R]
当访问127.0.0.1/testaa.htm时候 地址栏会变成http://localhost/taest.html
%1 是去中最后条件中的组成部分 就是1~~~