如何将 http://mysite/css/ 重定向到 http://server1.mysite.com/css?

如何将 http://mysite/css/ 重定向到 http://server1.mysite.com/css?

我如何重定向所有传递的请求到

http://mysite.com/css 

http://otherserver.otherserver.com/css

用户输入

http://mysite.com/css/somefile.css

并重定向至

http://otherserver.otherserver/css/comefile.css 

问候

答案1

我找到了 :)

RewriteRule ^css(.*)$ http://www.someserver.com/css$1 [L,R=301]

相关内容