301重定向子目录Zeus

时间:2012-09-27 14:54:20

标签: redirect rewrite subdirectory zeus

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

示例:

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

http://www.mydomain/stackoverflow2/index

我希望避免单独编写每个网址路径,因为网站很大。请帮助我在ZEUS服务器ARGH !!

1 个答案:

答案 0 :(得分:0)

match URL into $ with ^/stackoverflow/(.*)
if matched then
      set OUT:Location = /stackoverflow2/$1
    set RESPONSE=301
    set BODY=Page moved
    goto END
endif