I need to set up multiple projects on lampp. How can i create sub domains for these multiple projects.
My projects are in cakePHP.
Can anyone help me?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I just add a folder for each project in document root (usually
/var/www/in Ubuntu) I think it’s/var/www/html/in CentOS.Access is then
http://localhost/projectname/, so a Cake project called blog with an articles controller, you would do something likehttp://localhost/blog/articles/view/23to view article id=23.