Alias /unavailability "/opt/appdata/indispo"
			
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
			#RedirectMatch 301 /dream*
/unavailability/indispoOPTEAM.html
		
Different pages for differents languages
- Connect to the OHS/Apache servers
- Edit the config file, depending on the installation it could be inside /opt/oracle/ohs10g01/ohs/confhttp.conf or inside vhosts files /opt/oracle/ohs10g01/ohs/conf/vhosts/.conf
- Create the maintenance folder inside DocumentRoot and place there your html pages "in the examples NetCardFRFR.htm and NetCardDEDE.htm"
- Add the following lines for FR and DE languages
    
  
    ServerName internet.preprod.org
    DocumentRoot "/opt/oracle/ohs10g01/ohs/htdocs/"
  
    RewriteEngine on
  
    RewriteCond %{QUERY_STRING} ^language=FR
    RewriteRule ^/NetCard/index.jsp$ maintenance/NetCardFRFR.htm [R=302,L]
    RewriteCond %{QUERY_STRING} ^language=DE
    RewriteRule ^/NetCard/index.jsp$ maintenance/NetCardDEDE.htm [R=302,L] 
  
All request to same page
- Connect to the OHS/Apache servers
- Edit the config file, depending on the installation it could be inside /opt/oracle/ohs10g01/ohs/confhttp.conf or inside vhosts files /opt/oracle/ohs10g01/ohs/conf/vhosts/.conf
- Create the maintenance folder inside DocumentRoot and place there your html pages "in the examples NetCardFRFR.htm and NetCardDEDE.htm"
- Add the following lines for index.htm
    
    ServerName customercard.decathlon.fr
    #DocumentRoot "/opt/appdata/customercard.decathlon.fr/"
    DocumentRoot "/opt/appdata/customercard.decathlon.fr/maintenance/"
    DirectoryIndex index.htm
    RewriteEngine on
    RewriteCond %{REQUEST_URI} !/index.htm$
    RewriteCond %{REQUEST_URI} !/NetCard_files/[a-zA-Z0-9\-\.\_]*$
    RewriteRule $ /index.htm [R=302,L]   
  
A specific context to a specific page
- Connect to the OHS/Apache servers
- Edit the config file, depending on the installation it could be inside /opt/oracle/ohs10g01/ohs/confhttp.conf or inside vhosts files /opt/oracle/ohs10g01/ohs/conf/vhosts/.conf
- Create the maintenance folder inside DocumentRoot and place there your html pages. In that example, the folder is indispo-CC-Report.
- Add the following lines for index.htm
    RewriteEngine on
    RewriteRule ^/ccreport/[a-zA-Z0-9\-\.\_]*$ /indispo-CC-Report/index.html [R=302,L]