Using suPHP my goal is to have my website point to my /home
folder and every user within the home folder have their own index.html
page. I don't currently have an index.html
page in my /home
folder, but that would be the logical place to put a login page. Here is the structure I am after
home
├── index.html
├── user1
│ └── index.html
├── user2
│ └── index.html
├── user3
│ └── index.html
├── user4
│ └── index.html
├── user5
│ └── index.html
└── user6
└── index.html
When I go to 192.168.1.8
, I want it to load up /home/index.html
. When I go to 192.168.1.8/user1
I want it to load up /home/user1/index.html
.
Currently Apache is telling me I don't have rights to /home
or any of the nested folders. I am guessing it is because /home
belongs to root? Any suggestions on how to reshape this