Mod-Rewrite

找不到文件時重定向到預設圖像

  • December 26, 2013

從一個 iOS 應用程序中,我將 Apple Game Center 使用者的小頭像上傳到 Web 伺服器的/ios-avatars/目錄中。

但是有些玩家沒有任何照片。

通過使用 Apache mod_rewrite 是否可以將“未找到”請求重定向到類似/ios-avatars/GC123456789.png的文件/images/default.png

你甚至不需要為此重寫。只需使用ErrorDocument

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

引用自:https://serverfault.com/questions/563624