0
で定義されたときProxyPassMatchパスを持つことができない、私は別のポートに要求をリダイレクトしようとしているが、私はこのエラーを取得しています:別のポートにリダイレクトすることはProxyPassを取得|場所
ProxyPass|ProxyPassMatch can not have a path when defined in a location.
これは、私の仮想ホストのリダイレクト:<location>
セクション内にネスト
<VirtualHost *:80>
ServerName sub.domain.com.br
DocumentRoot /var/www/html/xxx
ServerAlias www.sub.domain.com.br
Options -Indexes
ProxyRequests On
ProxyPreserveHost On
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
<Location />
ProxyPass /route/ www.sub.domain.com.br:31311/
ProxyPassReverse /route/ www.sub.domain.com.br:31311/
</Location>
ErrorLog ${APACHE_LOG_DIR}/bot_error.log
CustomLog ${APACHE_LOG_DIR}/bot_access.log combined
</VirtualHost>