I am trying to use a regex redirect for media, we had them on a cdn but we are moving them back to wordpress.
........../website/images/
/..../../
/
/
Replace:<br>
/
We want to have the 4 top directories redirect to the bottom one
we used this, but it did not work.
RewriteRule ^wp-content/uploads/2015/(.*)$ /wp-content/uploads/$1 [R=301,NC,L]
RewriteRule ^wp-content/uploads/2016/(.*)$ /wp-content/uploads/$1 [R=301,NC,L]
RewriteRule ^wp-content/uploads/2017/(.*)$ /wp-content/uploads/$1 [R=301,NC,L]
RewriteRule ^wp-content/uploads/2018/(.*)$ /wp-content/uploads/$1 [R=301,NC,L]
RewriteRule ^wp-content/uploads/2019/(.*)$ /wp-content/uploads/$1 [R=301,NC,L]
Any ideas?
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1744931564a4601770.html
评论列表(0条)