标签: .htaccess redirect path
我有一条通往我的图片路径的路径,看起来像example.com/image/file.png,还有一些我用example.com/Image/file.png方式用大写字母区分图像路径。如何将页面上指向大写的每个图像重定向到小写路径?
example.com/image/file.png
example.com/Image/file.png
答案 0 :(得分:0)
要将/Image/file.png重定向到/image/file.png,您可以使用以下重定向
/Image/file.png
/image/file.png
RedirectMatch ^/Image/(.+\.png)$ /image/$1