활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.
활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.
in AEM we have a home page, e.g.
/content/site1/en/home.html
we can access this by entering www.oursite.com/content/site1/en/home.html
But if a user hits www.oursite.com they get a blank page.
I am guessing we need to setup some sort of redirect in dispatcher, but didnt find any tutorials for this. There were different instructions for IIS and apache, but as its cloud, we dont know which if these are being used.
Any suggestions?
We know about apache configuration, so are comfortable with virtual hosts etc, but have no idea about farms.
NOTE: this is for non prod for now.
해결되었습니다! 솔루션으로 이동.
조회 수
답글
좋아요 수
Hi @TB3dock
You need to apply a redirect in your dispatcher. Please add the below rule.
RewriteCond %{REQUEST_URI} ^/$
RewriteRule (.*) /content/site1/en/home.html [PT,L]
Thanks!
Hi @TB3dock
You need to apply a redirect in your dispatcher. Please add the below rule.
RewriteCond %{REQUEST_URI} ^/$
RewriteRule (.*) /content/site1/en/home.html [PT,L]
Thanks!
조회 수
답글
좋아요 수
조회 수
답글
좋아요 수
조회 수
답글
좋아요 수
조회 수
답글
좋아요 수