L
L
logotra2017-04-21 12:16:04
Apache HTTP Server
logotra, 2017-04-21 12:16:04

How to replace mod_rewrite image directory path?

Greetings.
Please tell me how to properly pull up images from the old site bbb.com to the new aaa.com?
So
RewriteCond %{HTTP_HOST} aaa\.com [NC]
RewriteRule sites/default/files/(.*) bbb.com/sites/default/files/$1 [L,R=301] fails

Answer the question

In order to leave comments, you need to log in

1 answer(s)
V
Viktor Taran, 2017-04-21
@shambler81

RewriteCond %{HTTP_HOST} aaa\.com [NC]
#если этот домен, кстати  не учтено что может быть и с ввв (www\.|)
RewriteCond %{REQUEST_FILENAME} -f
#  и если это файл ?  надеюсь это физические файлы, если нет то отключить этот пункт
RewriteCond %{REQUEST_URI} (.+)\.(jpg|jpeg|png|svg|tif|gif))& [NC]
# а так же 1 и более символов после него точка и расширение (список), конец строки 
RewriteRule (.*) bbb.com/%1 [L,R=301]
#То %1 это первая скобка из Rewritecond не путай с $1 это первая скобка рула.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question