0

我已更改站点中子文件夹的名称,需要知道 rewrite.script 的代码

例子:

我将如何指导http://www.mydomain/stackoverflow/index

http://www.mydomain/stackoverflow2/index

由于站点很大,我想避免单独编写每个 url 路径。请帮助我在 ZEUS 服务器 ARGH 上!

4

1 回答 1

0
match URL into $ with ^/stackoverflow/(.*)
if matched then
      set OUT:Location = /stackoverflow2/$1
    set RESPONSE=301
    set BODY=Page moved
    goto END
endif
于 2012-10-16T05:49:01.013 回答