我正在尝试使用以下规则将所有作为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]
任何帮助将不胜感激!
谢谢