htaccess RewriteRule目录内容到不同的域

问题描述 投票:1回答:1

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

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

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

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

RewriteEngine On
RewriteRule assets https://newdomain.com/domain-assets [L,R]
.htaccess mod-rewrite
1个回答
1
投票

试试这个。

 RewriteRule ^assets(.*)$ https://newdomain.com/domain-assets$1 [L,R]
© www.soinside.com 2019 - 2024. All rights reserved.