私の問題はです。
私のアプリケーションには画像フォルダがあり、zendフレームワークのトリミング技術があるため、トリミングされた画像がリクエストされ、以前に見つかった場合、htaccessはトリミングモデルを呼び出すことで画像に対応します
the file requested is : http://localhost/cmstest/public/contents/userdata/images/100X100/163.png
しかし、サーバーは正しいコントローラーを読み取ることができません
htaccesコードはこちら
Options +FollowSymLinks +ExecCGI
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)/(.*) ../../index/index/app/storage/image/$2/crop/$1 [QSA,L]
</IfModule>
表示されるエラーは
An error occurred
Page not found
Exception information:
Message: Invalid controller specified (contents)
Stack trace:
#0 /Applications/XAMPP/xamppfiles/htdocs/zend/library/Zend/Controller/Front.php(954): Zend_Controller_Dispatcher_Standard->dispatch(Object(Zend_Controller_Request_Http), Object(Zend_Controller_Response_Http))
#1 /Applications/XAMPP/xamppfiles/htdocs/zend/library/Zend/Application/Bootstrap/Bootstrap.php(97): Zend_Controller_Front->dispatch()
#2 /Applications/XAMPP/xamppfiles/htdocs/zend/library/Zend/Application.php(366): Zend_Application_Bootstrap_Bootstrap->run()
#3 /Applications/XAMPP/xamppfiles/htdocs/cmstest/public/index.php(36): Zend_Application->run()
#4 {main}
Request Parameters:
array (
'controller' => 'contents',
'action' => 'userdata',
'images' => '100X100',
'module' => 'frontend',
)
私を助けてください :(