Answer the question
In order to leave comments, you need to log in
Redirecting with Apache?
In general, such a thing, there are pages on the site where pictures are connected in the following path /images/file_name.extension.
The problem is that I moved this folder to public and now I need to make a redirect using apache when accessing the /images/ folder to /public/images/filename .
Answer the question
In order to leave comments, you need to log in
# 301 --- www.test.com/images => www.test.com/public/images
RewriteRule ^images/$ /public/images/? [L,R=301]
isn't it? in .htaccess
# Вариант 1, без переадресации
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^.?images/(.+)$ public/images/$1
# Вариант 2, с переадресацией
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^.?images/(.+)$ /public/images/$1 [R,L]
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question