以下のコードは、zf コマンドによって自動生成された .htaccess ファイルからのものです。説明が与えられていますが、私にとっては跳ね返りました。
# The following rewrites all other queries to index.php. The
# condition ensures that if you are using Apache aliases to do
# mass virtual hosting, the base path will be prepended to
# allow proper resolution of the index.php file; it will work
# in non-aliased environments as well, providing a safe, one-size
# fits all solution.
RewriteCond %{REQUEST_URI}::$1 ^(/.+)(.+)::$
RewriteRule ^(.*)$ - [E=BASE:%1]
RewriteRule ^(.*)$ %{ENV:BASE}index.php [NC,L]
共有ホスティングで zend プロジェクトを実行していて、へのパスを解決したい場合の解決策に関するものindex.php
ですか? 説明してください。