我需要将包含逗号的网址重写到另一个网址。原始URL还包含+'s(优点),我已经想到需要使用反斜杠进行转义,但是逗号似乎没有被正确读取。 这就是它的样子:
RewriteRule ^locations/New+York/Buffalo,\+Erie\+County,\+and\+Surrounding\+Areas$ "/locations/New+York/Buffalo" [R=301,NC]
答案 0 :(得分:0)
我几乎做对了,你只是忘了逃避第一个+
:
RewriteRule ^locations/New\+York/Buffalo,\+Erie\+County,\+and\+Surrounding\+Areas$ "/locations/New+York/Buffalo" [R=301,NC]