如何将文件夹及其子文件夹重定向到子域

时间:2019-02-07 12:31:07

标签: .htaccess redirect

我有一个wordpress博客,并且我已将“上载”文件夹更改为子域。 我以前的地址是这样的。 https://guilaneman.ir/ wp-content/uploads /.../.../ 我的新网址:

https://images.guilaneman.ir/1/

我使用了以下代码:但是它不起作用:

RewriteEngine on
RewriteBase /
RewriteRule ^/uploads/(.*)$ https://images.guilaneman.ir/1/$1 [R=301,L]

请注意,我在子文件夹中还有另一个wordpress博客,并将此代码放在要重定向的wp-content文件夹中。
如何将guilaneman.ir/wp-content/uploads/重定向到images.guilaneman.ir/1 /

1 个答案:

答案 0 :(得分:0)

重写左侧的错误匹配路径(/ uploads / * <> wp-content / uploads / *)

RewriteEngine on
RewriteBase /
RewriteRule ^wp-content\/uploads\/(.*)$ https://images.guilaneman.ir/1/$1 [R=301,L]