ISPCOnfig 3 at Port 80

Discussion in 'Installation/Configuration' started by vogelor, Sep 25, 2008.

  1. vogelor

    vogelor ISPConfig Developer ISPConfig Developer

    :confused: Maybe a stupid question, but... :confused:

    i like to use a "own" Domain for the control panel for example:
    www.web-config.com.

    If any of my customer "opens" this domain, they have to see the login of the panel (i don't want to use www.mydomain.com:8080) how can i do this?
     
  2. falko

    falko Super Moderator ISPConfig Developer

    I think you can do this with a rewrite rule, or you create an index.php file with the following contents:


    PHP:
    <?php
    header
    ("Location: http://www.web-config.com:8080/"); /* Redirect browser */

    /* Make sure that code below does not get executed when we redirect. */
    exit;
    ?>
     
  3. vogelor

    vogelor ISPConfig Developer ISPConfig Developer

    Yeah, i know this "tricks" but then the "new" url is visible at the "url-line" at the browser. Means the user can see "http://www.web-config.com:8080" and this is what i liked to avoid.

    Many thanks anyway!:D
     
  4. falko

    falko Super Moderator ISPConfig Developer

Share This Page