1. add entry in resource mappings at OSGI config in AEM
/config.publish/org.apache.sling.jcr.resource.internal.JcrResourceResolverFactoryImpl.xml
resource.resolver.mapping="[/:/,/content/myproj/en/home:/]"
2. Add Apache server rewrite rules
RewriteRule ^/$ /content/myproj/en/home.html [PT,NE,L]
RewriteRule ^/(.*)$ /content/myproj/en/home/$1 [PT,NE]
Arun Patidar