I can’t seem to figure out how to do a url rewrite so that I can remove the /web/ from all of my community sites:
domain.com/web/communitysite1/page
domain.com/web/communitysite2/page
domain.com/web/communitysite3/page
domain.com/web/communitysite4/page
and I want it to be,
domain.com/communitysite1/page
domain.com/communitysite2/page
domain.com/communitysite3/page
domain.com/communitysite4/page
Here’s a thread from Liferay, the solution there is using the virtual host; however, that’s only for one of the community site for that one domain but I need the domain to be all the same for all the community sites I’m doing.
Thank you @Yazmat for your kind help.
@Prakash K Here’s what I am currently using, it’s a different solution using proxy mod.
ProxyHTMLExtended OnProxyHTMLEnable On
SetOutputFilter INFLATE;proxy-html;DEFLATE
ProxyHTMLURLMap ^/web/(.*)$ /$1 Rli