ispCP - Board - Support
fresh user :( - Printable Version

+- ispCP - Board - Support (http://www.isp-control.net/forum)
+-- Forum: ispCP Omega Support Area (/forum-30.html)
+--- Forum: Usage (/forum-34.html)
+--- Thread: fresh user :( (/thread-12073.html)



fresh user :( - brianffm - 11-08-2010 01:01 AM

Hello all,

I install ispCP Omega on a debian. all running well.

some questions. I cannot found a way to set the webserver root for diffrent domains on the same directory.

if I create a new domain, it told me, the directory exist.

after I add a domain, I cannot found option to change the system root ..

I try to found a alternativ to confixx. there it is possible Sad


RE: fresh user :( - kassah - 11-08-2010 01:36 AM

The only way to have multiple domains have the same webroot via the panel is to make the secondary domains aliases of the first.
I do this with things like blah.com and blah.net. Making blah.net an alias of blah.com means the content is the same for both domains.


RE: fresh user :( - Kika - 11-09-2010 04:57 AM

if you create 2 domain and put the content to the domain1.tld and put a .htaccess file to the root of the domain2.tld than this will be a solution.

Code:
<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^(.*)$ http://domain1.tld/$1 [P,L]
</IfModule>