Apache服务器上怎样替换请求URL中的文字
Apache服务器上怎样替换请求URL中的文字?在.htaccess文件中增加下面语句:RewriteCond %{REQUEST_URL} "string1"RewriteRule "(.*)"string1(.*)" "$1string2$2" [N,PT]例如当客户端发出请求URL:example.com/string1/abcstring1.html,则转换为目的URL:example.com/string2/abcstring2.html。当中[N]标记告诉Apache从头实行......