Redirecionar para index.html usando ajp_poxy com Tomcat e Apache2

0

Estou usando o Tomcat 8 e o apache2 entre os dois. Estou usando o ajp_proxy como conector da web para conectar o tomcat e o apache. O site está funcionando bem, mas toda vez que eu preciso usar domain_name / index.html

Estou tentando redirecionar o URL para index.html, mas não está funcionando. Aqui está o meu conteúdo de host virtual.

<VirtualHost *:80>
   ServerName localhost
   DirectoryIndex index.html
   #Log
   ErrorLog /var/log/ajp.error.log
   CustomLog /var/log/ajp.log combined

   #AJP configuration
   <Proxy *>
       Order deny,allow
       AddDefaultCharset Off
       Allow from all
   </Proxy>

   ProxyRequests Off
   ProxyPreserveHost on
   ProxyPass /index.html 
   ProxyPass / ajp://localhost:8009/
   ProxyPassReverse / ajp://localhost:8009/

 </VirtualHost>

Por favor me ajude, como redirecionar para index.html.

    
por harsha 10.01.2018 / 06:41

0 respostas