Forum Moderators: phranque
<VirtualHost *:8004>
ServerName www.somename.com:80
#DocumentRoot /data01/somedomain/doc_root
#RedirectMatch ^/$ /under_maintenance/undermaintenance.html
<Directory "/data01/something/doc_root">
Options MultiViews
AllowOverride None
AllowOverride AuthConfig
Order allow,deny
Allow from all
</Directory>
RewriteEngine on
RewriteRule ^/general/about.html /about [R=301]
RewriteRule ^/sbpra.html /compliance_contacts [R=301]
RewriteRule ^/sbpra/POCAll.html /compliance_contacts [R=301]
RewriteRule ^/sbpra/ResourceAll.html /compliance_assistance [R=301]
RewriteRule ^/topics/research_resources/ /topics [R=301]
RewriteRule ^/appmanager/bg/main/([^/]+)/$ /appmanager/bg/main?_nfpb=true&_pageLabel=$1 [L,R]
RewriteRule ^/appmanager/bg/main/([^/]+)$ /appmanager/bg/main?_nfpb=true&_pageLabel=$1 [L,R]
RewriteRule ^/appmanager/bg/main/([^/]+)/([^/]+)/([^/]+)&([^/]+)/([^/]+)/$ appmanager/bg/main?_nfpb=true&_windowLabel=$1&_state=maximized&categoryId=$2&categoryName=$3\%26$4&_pageLabel=$5 [L,R,NE]
RewriteRule ^/appmanager/bg/main/([^/]+)/([^/]+)/([^/]+)&([^/]+)/([^/]+)$ appmanager/bg/main?_nfpb=true&_windowLabel=$1&_state=maximized&categoryId=$2&categoryName=$3\%26$4&_pageLabel=$5 [L,R,NE]
RewriteRule ^/appmanager/bg/main/([^/]+)/([^/]+)/([^/]+)/([^/]+)/$ appmanager/bg/main?_nfpb=true&_windowLabel=$1&_state=maximized&categoryId=$2&categoryName=$3&_pageLabel=$4 [L,R,NE]
RewriteRule ^/appmanager/bg/main/([^/]+)/([^/]+)/([^/]+)/([^/]+)$ appmanager/bg/main?_nfpb=true&_windowLabel=$1&_state=maximized&categoryId=$2&categoryName=$3&_pageLabel=$4 [L,R,NE]
# WebLogic Settings
<IfModule mod_weblogic.c>
Debug OFF
DynamicServerList OFF
MatchExpression *
WebLogicCluster=someip1:portnumner,someip2:portnumner
</IfModule>
</VirtualHost>
Thanks a lot, Your valuable suggestion and feedback helped a lot to solve the issue. Now the rewrite rules are working fine in both IE and Firefox after disabling the MultiViews in the Options directive and by adding the [%{HTTP_HOST}...] in the substitution string of each rule. Thank you so much Jim
Raj