Answer the question
In order to leave comments, you need to log in
How to redirect from folder to subdomain?
How to redirect from address site.ru/image/каие-то_символы
toкаие-то_символы.site.ru
Answer the question
In order to leave comments, you need to log in
RewriteCond %{HTTP_HOST} ^(?:www\.)?site\.ru$
RewriteRule ^image/(.+)$ http://$1.%{HTTP_HOST}/ [R=301,L]
RewriteCond %{HTTP_HOST} ^(www\.|)site\.ru$ [NC]
# проверяем чтоб не было циклов, сайт без 3 уровня, или только с ввв
RewriteCond %{REQUEST_URI} ^image/(+*)$
# все что лежит в папки имейдж не меньше 1 символа
RewriteRule ^(.*)$ http://%1.%{HTTP_HOST}/$ [R=301,L]
#%1 - все что в скобках вышее в привел ^image/(+*)$
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question