我想redirect一个特定的url,如:
www.example.com/test/ex.gif
至
static.example.com/ex.gif
我怎么能在.htaccess中做到这一点?
从我的头顶上:
RewriteRule ^http://img.zgserver.com/apache/ex.gif$ http://img.zgserver.com/apache/ex.gif [NC,R=301]
或者在测试中的任何文件:
RewriteRule ^http://www.example.com/test/(.*)$ http://static.example.com/$1 [NC,R=301]
在Berardi先生的建议下得到纠正
试试这个mod_rewrite规则:
RewriteEngine on RewriteRule ^test/(.*) http://static.example.com/$1
或者这个mod_alias指令:
Redirect /test/ http://static.example.com/