Codeigniter と SLIR (Smart Lencioni Image Resizer https://github.com/lencioni/SLIR ) を利用するアプリケーションがあります。SLIR では、直感的な URI 構造を使用して画像のサイズを変更できます。例えば:
<img src="/slir/w100-h100/path/to/image.jpg"/>
これにより、画像のサイズが 100px * 100px に収まるように変更されます。なんらかの理由で、サイズ変更された画像を表示しようとすると (例: http://a2op03.com/slir/w300-h90/images/content/franchise-opportunities-badge.png ) Codeigniter によって生成された 404 エラーが発生します. 次のことを確認しました。
- http://a2op03.com/images/content/franchise-opportunities-badge.pngは存在します。
- ホストによると、mod_rewrite は適切にセットアップされ、機能しています。
- GD ライブラリ (SLIR 用) がセットアップされ、有効になっている
- SLIR によると、すべてが適切にセットアップされています ( http://a2op03.com/slir/install/ )
Codeigniter [root] htaccess ファイルは次のようになります。
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
#Removes access to the system folder by users.
#Additionally this will allow you to create a System.php controller,
#previously this would not have been possible.
#'system' can be replaced if you have renamed your system folder.
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ /index.php?/$1 [L]
#When your application folder isn't in the system folder
#This snippet prevents user access to the application folder
#Submitted by: Fabdrol
#Rename 'application' to your applications folder name.
RewriteCond %{REQUEST_URI} ^application.*
RewriteRule ^(.*)$ /index.php?/$1 [L]
#Checks to see if the user is attempting to access a valid file,
#such as an image or css document, if this isn't true it sends the
#request to index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>
<IfModule !mod_rewrite.c>
# If we don't have mod_rewrite installed, all 404's
# can be sent to index.php, and everything works as normal.
# Submitted by: ElliotHaughin
ErrorDocument 404 /index.php
</IfModule>
/slir/ の htaccess ファイルは次のようになります。
# Prevent other scripts from interfering with SLIR
php_value auto_prepend_file none
php_value auto_append_file none
# Pretty URLs
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [S=40]
RewriteRule . index.php [L]
</IfModule>
# Prevent viewing of the error log file in its default location
<Files slir-error-log>
Order Deny,Allow
Deny from All
</Files>
私の最初の疑いは、mod_rewrite.c が適切にセットアップされていないため、SLIR htaccess によって処理されず、404 に送信しているルート htaccess にフォールバックしていないことでした。サーバーへの完全なアクセス権を持つ WHM を持っています。ホストは、mod_rerwrite が正常に動作するはずだと主張しています。これは別のサーバーで問題なく動作していますが、ここで動作しない理由がわかりません。どんな助けでも大歓迎です!