当找不到文件时重定向到默认图像

当找不到文件时重定向到默认图像

我从 iOS 应用程序将 Apple Game Center 用户的小头像上传到网络服务器的一个/ios-avatars/目录中。

但有些球员没有任何照片。

通过使用 Apache mod_rewrite,可以将“未找到”请求重定向到类似的文件/ios-avatars/GC123456789.png/images/default.png

答案1

您甚至不需要为此重写。只需使用ErrorDocument...

<Location /ios-avatars/>
    ErrorDocument 404 /images/default.png
</Location>

相关内容