我所有的图像都在这个路径中:root/lib/images/demo/
现在我所有的图像都移动到新文件夹:root/lib/images_new/demo/
如何将所有图片重定向到新地址?
如果用户继续这个地址:
根/lib/images/demo/test.png
它应该被重定向到:
根/lib/images_new/demo/test.png
我所有的图像都在这个路径中:root/lib/images/demo/
现在我所有的图像都移动到新文件夹:root/lib/images_new/demo/
如何将所有图片重定向到新地址?
如果用户继续这个地址:
根/lib/images/demo/test.png
它应该被重定向到:
根/lib/images_new/demo/test.png
假设旧图像 url http://www.example.com/root/lib/images/demo/test.png,将以下指令添加到.htaccess
您网站的根目录中
RewriteEngine on
RewriteRule ^root/lib/images/demo/(.*)$ /root/lib/images_new/demo/$1 [R=301,L,QSA,NC]