Hi, I have multiple websites running on one shared hosting, with each a unique domain name. Should I create an application for each of those websites? I tried using one application and different url paths but that didn't work. It gives me "There is no application mounted at the root of this domain." when navigating directly to a domain plus the websites are accesable through www.mainsite.com/othersite.com. That's not what I want. Thanks in advance. asked 15 Jul '11, 18:17 Saveas |
It looks like you have a single Static/CGI/PHP application. If you want to use subdirectories of this webapps directory for your sites, you'll need to create separate applications of the type "Symbolic link to static/cgi/php", where the "extra info" field for each one points to the absolute path containing the files that are to be used for that domain. Then in the website record for each domain, you would specify only this symbolic link app, and the path should be /. Alternatively, you could just create a separate Static/CGI/PHP for each website, and specify the new app when setting up the website, with the path /. I hope that helps. answered 15 Jul '11, 18:26 maryh |