iOS 앱에서 Apple Game Center 사용자의 작은 아바타를 웹 서버의 디렉토리에 업로드합니다 /ios-avatars/
.
하지만 일부 선수들은 사진이 없습니다.
/ios-avatars/GC123456789.png
Apache mod_rewrite를 사용하면 "찾을 수 없음" 요청을 다음 과 같은 파일로 리디렉션할 수 있습니까 /images/default.png
?
답변1
이를 위해 다시 작성할 필요조차 없습니다. 그냥 사용 ErrorDocument
...
<Location /ios-avatars/>
ErrorDocument 404 /images/default.png
</Location>