Hello, thank you in advance for any help, I've been trying for a few days now and I'm lost.
We currently have a WHM + cPanel host. With a main domain like school.com
Each students have a subdomain (with their own cPanel): student1.school.com
Now, each students are building a Symfony app in their subdomain: student1.school.com/symfony
To view their Website, we need to go to student1.school.com/symfony/public
In the old days, we used Wampserver with aliases but now with the WHM Include Editor, I can't seem to find what I need to do the same. I tried every .htaccess variation I found online but to no success.
In Wampserver we had for exemple:
Thank you very much!
We currently have a WHM + cPanel host. With a main domain like school.com
Each students have a subdomain (with their own cPanel): student1.school.com
Now, each students are building a Symfony app in their subdomain: student1.school.com/symfony
To view their Website, we need to go to student1.school.com/symfony/public
In the old days, we used Wampserver with aliases but now with the WHM Include Editor, I can't seem to find what I need to do the same. I tried every .htaccess variation I found online but to no success.
In Wampserver we had for exemple:
What would be the WHM alternative for our current setup?Alias /student1/symfony "e:/inetpub/student1/symfony/public"
<Directory "e:/inetpub/student1/symfony/public">
AllowOverride All
Require all granted
</Directory>
Thank you very much!