htaccess RewriteRule目录内容到不同的域

时间:2018-03-02 17:18:08

标签: .htaccess mod-rewrite

我想要做的是重定向来自; :

https://olddomain.com/assets/pathtofile.png

https://newdomain.com/domain-assets/pathtofile.png

这是我到目前为止所拥有的;

RewriteEngine On
RewriteRule assets https://newdomain.com/domain-assets [L,R]

1 个答案:

答案 0 :(得分:1)

试试这个。

 RewriteRule ^assets(.*)$ https://newdomain.com/domain-assets$1 [L,R]