重写域和路径

时间:2009-09-02 09:43:30

标签: apache .htaccess url-rewriting

我想重定向一个特定的网址,如:

www.example.com/test/ex.gif

static.example.com/ex.gif

我怎么能在.htaccess中这样做?

2 个答案:

答案 0 :(得分:2)

从头到尾:

RewriteRule ^http://www.example.com/test/ex.gif$ http://static.example.com/ex.gif [NC,R=301]

或测试中的任何文件:

RewriteRule ^http://www.example.com/test/(.*)$ http://static.example.com/$1 [NC,R=301]
  

在Berardi先生的建议后更正

答案 1 :(得分:2)

试试这个mod_rewrite规则:

RewriteEngine on
RewriteRule ^test/(.*) http://static.example.com/$1

mod_alias指令:

Redirect /test/ http://static.example.com/
相关问题