XF 1.4 Change homepage

lehoxop237

Member
I'm trying to figure out a way to change the xenforo Homepage.
I installed xenforo in the root of my webserver and I made my custom homepage in a directory called "Home".

Now I was wondering how I could, if possible, change what shows on the homepage of my website to the contents of my "Home" folder instead of the forum index. I tried doing it with nginx redirects and alias but that didn't work.
Does anyone know how I could do that?

-aaldim


EDIT: SOLUTION
 
Last edited:
Thanks! It's working great now. I knew it was an easy solution but just didn't knew what it was.
I use nginx though so this is my solution:
Code:
location /
{
        index home.php;
}
 
Top Bottom