我有一个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 /
答案 0 :(得分:0)
重写左侧的错误匹配路径(/ uploads / * <> wp-content / uploads / *)
RewriteEngine on
RewriteBase /
RewriteRule ^wp-content\/uploads\/(.*)$ https://images.guilaneman.ir/1/$1 [R=301,L]