我从 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>