存在しないファイルを古いサーバーにプロキシしながら、新しいサーバー上のファイルを提供するルールを作成しようとしています。プロキシ ルールは正常に機能し、不足しているファイルとディレクトリが古いサーバーに送信されます。
私が抱えている問題は、new-server.example.com/blah (/blah/ が新しいサーバーに存在する) がプロキシ ルールに渡され、古いサーバーにルーティングされることです。
スキップを試みる理由は、new-server.example.com/blah が「プロキシ セクション」に落ちて、new-server.example.com/blah/index.php を渡すためです。新しいサーバーには Index.php はありませんが、index.html はあります。「プロキシ セクション」は、DirectoryIndex 内のすべてのインデックス ファイルの可能性に従うわけではなく、最初のものだけを調べます。
そのため、「要求された URL /blah/index.php はこのサーバーで見つかりませんでした」というエラー メッセージが表示されます。
実際に機能するようにこれをどのように書くことができますか? - ありがとう。
RewriteEngine On
# skip, proxy section
RewriteCond /var/www/html%{REQUEST_FILENAME} -f [OR]
RewriteCond /var/www/html%{REQUEST_FILENAME} -d
RewriteRule .? - [S=4]
# proxy section
RewriteCond /var/www/html%{REQUEST_FILENAME} !-f
RewriteCond /var/www/html%{REQUEST_FILENAME} !-d
RewriteRule ^/(.*) http://old-server.example.com/$1 [P]
ProxyPassReverse / http://old-server.example.com/
# rewrite log
pass through /index.php
init rewrite engine with requested uri /
applying pattern '.?' to uri '/'
RewriteCond: input='/var/www/html/' pattern='-f' => not-matched
RewriteCond: input='/var/www/html/' pattern='-d' => matched
pass through /
init rewrite engine with requested uri /index.php
applying pattern '.?' to uri '/index.php'
RewriteCond: input='/var/www/html/index.php' pattern='-f' => matched
pass through /index.php
init rewrite engine with requested uri /blah/
applying pattern '.?' to uri '/blah/'
RewriteCond: input='/var/www/html/blah/' pattern='-f' => not-matched
RewriteCond: input='/var/www/html/blah/' pattern='-d' => matched
pass through /blah/
init rewrite engine with requested uri /blah/index.php
applying pattern '.?' to uri '/blah/index.php'
RewriteCond: input='/var/www/html/blah/index.php' pattern='-f' => not-matched
RewriteCond: input='/var/www/html/blah/index.php' pattern='-d' => not-matched
applying pattern '^/(.*)' to uri '/blah/index.php'
RewriteCond: input='/var/www/html/blah/index.php' pattern='!-f' => matched
RewriteCond: input='/var/www/html/blah/index.php' pattern='!-d' => matched
rewrite '/blah/index.php' -> 'http://old-server.example.com/blah/index.php'
forcing proxy-throughput with http://old-server.example.com/blah/index.php
go-ahead with proxy request proxy:http://old-server.example.com/blah/index.php [OK]