httpd.conf redirige / a 8080 y redirige /index.html a /app/index.html

httpd.conf redirige / a 8080 y redirige /index.html a /app/index.html

¿Cómo se puede crear esta configuración en httpd.conf?

acceso de usuariohttp://sitioy ver contenido dehttp://sitio:8080

pero

cuando accedenhttp://sitio/index.html, debería redirigir ahttp://sitio/aplicación/index.html

cual es el contenido dehttp://sitio:8080/app/index.html

y cuando el usuario accedehttp://sitio:8080/index.htmldebería mantener el acceso así. No redireccionar ahttp://sitio:8080/app/index.html

Probé esta configuración en httpd.conf:

Redirect "/index.html" "/app/index.html"

ProxyRequests Off
ProxyPreserveHost on

ProxyPass / http://localhost:8080/
ProxyPassReverse / http://localhost:8080/
RewriteEngine On

Pero el index.html a app/index.html no funciona.

¿Se puede hacer con httpd.conf?

el 8080 está en Tomcat y el 80 está en httpd.

Respuesta1

Encontré la respuesta:

RewriteRule ^/index\.html$ /app/index.html [L,R]

información relacionada