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.
Solved! Go to Solution.
Views
Replies
Total Likes
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!
Views
Replies
Total Likes
Views
Replies
Total Likes
Views
Replies
Total Likes
Views
Replies
Total Likes
Views
Likes
Replies