次のルールを使用して、http ://portal.company.com/legacyとして Web サーバーに着信するすべてのリクエストをhttp://portal.company.com/wps/portal/public/legacy/legacyportletにリダイレクトしようとしています。しかし、期待どおりに機能していません。
RewriteEngine on
RewriteCond %{HTTP_HOST} ^portal\.company\.com$ [NC]
RewriteCond %{REQUEST_URI} ^/legacy$ [NC]
RewriteRule ^(.*)$ /wps/portal/public/legacy/legacyportlet$1 [NC,L,PT]
私も試してみました
RewriteCond %{HTTP_HOST} ^portal\.company\.com$ [NC]
RewriteRule ^/legacy /wps/portal/public/legacy/legacyportlet [NC,L,PT]
どんな助けでも大歓迎です!
ありがとう