我想要做的是重定向来自; :
https://olddomain.com/assets/pathtofile.png
到
https://newdomain.com/domain-assets/pathtofile.png
这是我到目前为止所拥有的;
RewriteEngine On
RewriteRule assets https://newdomain.com/domain-assets [L,R]
答案 0 :(得分:1)
试试这个。
RewriteRule ^assets(.*)$ https://newdomain.com/domain-assets$1 [L,R]