mod書き換えルールを介してURLをリダイレクトしたいだけです。(R=301) を除いてこのルールを適用しました。
例 : http:///webapp/wcs/stores/servlet/en/marksandspencer から http:///en/marksandspencer へ
このルールを mod リダイレクト ルールに使用しています。
RewriteEngine on
RewriteCond %{REQUEST_URI} !^(/)?$
RewriteCond %{REQUEST_URI} !^/webapp.*$
RewriteCond %{REQUEST_URI} !^/wcsstore.*$
RewriteRule ^/(.*)$ /webapp/wcs/stores/servlet/$1 [PT,NC,L,QSA]
RewriteRule ^/webapp/wcs/stores/servlet/(.*) /$1 [NE,L,QSA]
RewriteRule ^(/)?$ /webapp/wcs/stores/servlet/en/marksandspencer [PT,NC,L]